Skip to content

Commit

Permalink
Release 0.0.1-beta18
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 10, 2024
1 parent c0a013c commit fd2a8e9
Show file tree
Hide file tree
Showing 240 changed files with 1,440 additions and 1,371 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ Instantiate and use the client with the following:
import { GooeyClient } from "gooeyai";

const client = new GooeyClient({ apiKey: "YOUR_API_KEY" });
await client.animate();
await client.animate({
animationPrompts: [
{
frame: "frame",
prompt: "prompt",
},
],
});
```

## Request And Response Types
Expand All @@ -30,7 +37,7 @@ following namespace:
```typescript
import { Gooey } from "gooeyai";

const request: Gooey.AsyncFormVideoBotsRequest = {
const request: Gooey.CreateStreamRequest = {
...
};
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gooeyai",
"version": "0.0.1-beta19",
"version": "0.0.1-beta18",
"private": false,
"repository": "https://github.com/GooeyAI/typescript-sdk",
"main": "./index.js",
Expand Down
38 changes: 27 additions & 11 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ await client.postV3VideoBotsAsync();

## CopilotIntegrations

<details><summary><code>client.copilotIntegrations.<a href="/src/api/resources/copilotIntegrations/client/Client.ts">videoBotsStreamCreate</a>() -> Gooey.CreateStreamResponse</code></summary>
<details><summary><code>client.copilotIntegrations.<a href="/src/api/resources/copilotIntegrations/client/Client.ts">videoBotsStreamCreate</a>({ ...params }) -> Gooey.CreateStreamResponse</code></summary>
<dl>
<dd>

Expand All @@ -57,7 +57,9 @@ await client.postV3VideoBotsAsync();
<dd>

```typescript
await client.copilotIntegrations.videoBotsStreamCreate();
await client.copilotIntegrations.videoBotsStreamCreate({
integrationId: "integration_id",
});
```

</dd>
Expand All @@ -73,6 +75,14 @@ await client.copilotIntegrations.videoBotsStreamCreate();
<dl>
<dd>

**request:** `Gooey.CreateStreamRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `CopilotIntegrations.RequestOptions`

</dd>
Expand Down Expand Up @@ -163,7 +173,7 @@ await client.copilotForYourEnterprise.asyncFormVideoBots();
<dl>
<dd>

**request:** `Gooey.AsyncFormVideoBotsRequest`
**request:** `Gooey.VideoBotsPageRequest`

</dd>
</dl>
Expand Down Expand Up @@ -651,7 +661,9 @@ await client.bulkRunner.post();
<dd>

```typescript
await client.evaluator.asyncFormBulkEval();
await client.evaluator.asyncFormBulkEval({
documents: ["documents"],
});
```

</dd>
Expand All @@ -667,7 +679,7 @@ await client.evaluator.asyncFormBulkEval();
<dl>
<dd>

**request:** `Gooey.AsyncFormBulkEvalRequest`
**request:** `Gooey.BulkEvalPageRequest`

</dd>
</dl>
Expand Down Expand Up @@ -907,7 +919,9 @@ await client.searchYourDocsWithGpt.statusDocSearch({
<dd>

```typescript
await client.smartGpt.asyncFormSmartGpt();
await client.smartGpt.asyncFormSmartGpt({
inputPrompt: "input_prompt",
});
```

</dd>
Expand All @@ -923,7 +937,7 @@ await client.smartGpt.asyncFormSmartGpt();
<dl>
<dd>

**request:** `Gooey.AsyncFormSmartGptRequest`
**request:** `Gooey.SmartGptPageRequest`

</dd>
</dl>
Expand Down Expand Up @@ -1115,7 +1129,7 @@ await client.functions.asyncFormFunctions();
<dl>
<dd>

**request:** `Gooey.AsyncFormFunctionsRequest`
**request:** `Gooey.FunctionsPageRequest`

</dd>
</dl>
Expand Down Expand Up @@ -1255,7 +1269,7 @@ await client.lipSyncing.asyncFormLipsync();
<dl>
<dd>

**request:** `Gooey.AsyncFormLipsyncRequest`
**request:** `Gooey.LipsyncPageRequest`

</dd>
</dl>
Expand Down Expand Up @@ -2303,7 +2317,9 @@ await client.misc.getBalance();
<dd>

```typescript
await client.misc.videoBotsBroadcast();
await client.misc.videoBotsBroadcast({
text: "text",
});
```

</dd>
Expand All @@ -2319,7 +2335,7 @@ await client.misc.videoBotsBroadcast();
<dl>
<dd>

**request:** `Gooey.VideoBotsBroadcastRequest`
**request:** `Gooey.BotBroadcastRequestModel`

</dd>
</dl>
Expand Down
Loading

0 comments on commit fd2a8e9

Please sign in to comment.