Skip to content

Commit

Permalink
chore: Update SDK logos to new hex design
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeesha committed Nov 1, 2024
1 parent 272eca5 commit 76d4ee5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion sdk-dotnet/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://a.inferable.ai/logo.png?v=2" width="200" style="border-radius: 10px" />
<img src="https://a.inferable.ai/logo-hex.png" width="200" style="border-radius: 10px" />
</p>

# .NET SDK for Inferable
Expand Down
2 changes: 1 addition & 1 deletion sdk-go/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://a.inferable.ai/logo.png?v=2" width="200" style="border-radius: 10px" />
<img src="https://a.inferable.ai/logo-hex.png" width="200" style="border-radius: 10px" />
</p>

# Go SDK for Inferable
Expand Down
14 changes: 8 additions & 6 deletions sdk-node/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://a.inferable.ai/logo.png?v=2" width="200" style="border-radius: 10px" />
<img src="https://a.inferable.ai/logo-hex.png" width="200" style="border-radius: 10px" />
</p>

# Typescript SDK
Expand Down Expand Up @@ -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" } },
Expand Down

0 comments on commit 76d4ee5

Please sign in to comment.