Skip to content

Commit

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

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

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

const request: Gooey.CreateStreamRequest = {
const request: Gooey.AsyncFormVideoBotsRequest = {
...
};
```
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-beta18",
"version": "0.0.1-beta19",
"private": false,
"repository": "https://github.com/GooeyAI/typescript-sdk",
"main": "./index.js",
Expand Down
38 changes: 11 additions & 27 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>({ ...params }) -> Gooey.CreateStreamResponse</code></summary>
<details><summary><code>client.copilotIntegrations.<a href="/src/api/resources/copilotIntegrations/client/Client.ts">videoBotsStreamCreate</a>() -> Gooey.CreateStreamResponse</code></summary>
<dl>
<dd>

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

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

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

**request:** `Gooey.CreateStreamRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `CopilotIntegrations.RequestOptions`

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

</dd>
</dl>
Expand Down
Loading

0 comments on commit c0a013c

Please sign in to comment.