diff --git a/sdk-dotnet/README.md b/sdk-dotnet/README.md index 68b39729..e4e6132f 100644 --- a/sdk-dotnet/README.md +++ b/sdk-dotnet/README.md @@ -1,5 +1,5 @@
- +
# .NET SDK for Inferable diff --git a/sdk-go/README.md b/sdk-go/README.md index 16977b1d..e234e657 100644 --- a/sdk-go/README.md +++ b/sdk-go/README.md @@ -1,5 +1,5 @@- +
# Go SDK for Inferable diff --git a/sdk-node/README.md b/sdk-node/README.md index e680658d..b3ea1b83 100644 --- a/sdk-node/README.md +++ b/sdk-node/README.md @@ -1,5 +1,5 @@- +
# Typescript SDK @@ -85,13 +85,15 @@ The following code will create an [Inferable run](https://docs.inferable.ai/page const run = await client.run({ message: "Say hello to John", // Optional: Explicitly attach the `sayHello` function (All functions attached by default) - attachedFunctions: [{ - function: "sayHello", - service: "default", - }], + attachedFunctions: [ + { + function: "sayHello", + service: "default", + }, + ], // Optional: Define a schema for the result to conform to resultSchema: z.object({ - didSayHello: z.boolean() + didSayHello: z.boolean(), }), // Optional: Subscribe an Inferable function to receive notifications when the run status changes //onStatusChange: { function: { function: "handler", service: "default" } },