Skip to content

Commit c0a013c

Browse files
committed
Release 0.0.1-beta19
1 parent fff4bdd commit c0a013c

File tree

239 files changed

+1351
-1420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

239 files changed

+1351
-1420
lines changed

README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,7 @@ Instantiate and use the client with the following:
1919
import { GooeyClient } from "gooeyai";
2020

2121
const client = new GooeyClient({ apiKey: "YOUR_API_KEY" });
22-
await client.animate({
23-
animationPrompts: [
24-
{
25-
frame: "frame",
26-
prompt: "prompt",
27-
},
28-
],
29-
});
22+
await client.animate();
3023
```
3124

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

40-
const request: Gooey.CreateStreamRequest = {
33+
const request: Gooey.AsyncFormVideoBotsRequest = {
4134
...
4235
};
4336
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gooeyai",
3-
"version": "0.0.1-beta18",
3+
"version": "0.0.1-beta19",
44
"private": false,
55
"repository": "https://github.com/GooeyAI/typescript-sdk",
66
"main": "./index.js",

reference.md

Lines changed: 11 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ await client.postV3VideoBotsAsync();
4444

4545
## CopilotIntegrations
4646

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

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

5959
```typescript
60-
await client.copilotIntegrations.videoBotsStreamCreate({
61-
integrationId: "integration_id",
62-
});
60+
await client.copilotIntegrations.videoBotsStreamCreate();
6361
```
6462

6563
</dd>
@@ -75,14 +73,6 @@ await client.copilotIntegrations.videoBotsStreamCreate({
7573
<dl>
7674
<dd>
7775

78-
**request:** `Gooey.CreateStreamRequest`
79-
80-
</dd>
81-
</dl>
82-
83-
<dl>
84-
<dd>
85-
8676
**requestOptions:** `CopilotIntegrations.RequestOptions`
8777

8878
</dd>
@@ -173,7 +163,7 @@ await client.copilotForYourEnterprise.asyncFormVideoBots();
173163
<dl>
174164
<dd>
175165

176-
**request:** `Gooey.VideoBotsPageRequest`
166+
**request:** `Gooey.AsyncFormVideoBotsRequest`
177167

178168
</dd>
179169
</dl>
@@ -661,9 +651,7 @@ await client.bulkRunner.post();
661651
<dd>
662652

663653
```typescript
664-
await client.evaluator.asyncFormBulkEval({
665-
documents: ["documents"],
666-
});
654+
await client.evaluator.asyncFormBulkEval();
667655
```
668656

669657
</dd>
@@ -679,7 +667,7 @@ await client.evaluator.asyncFormBulkEval({
679667
<dl>
680668
<dd>
681669

682-
**request:** `Gooey.BulkEvalPageRequest`
670+
**request:** `Gooey.AsyncFormBulkEvalRequest`
683671

684672
</dd>
685673
</dl>
@@ -919,9 +907,7 @@ await client.searchYourDocsWithGpt.statusDocSearch({
919907
<dd>
920908

921909
```typescript
922-
await client.smartGpt.asyncFormSmartGpt({
923-
inputPrompt: "input_prompt",
924-
});
910+
await client.smartGpt.asyncFormSmartGpt();
925911
```
926912

927913
</dd>
@@ -937,7 +923,7 @@ await client.smartGpt.asyncFormSmartGpt({
937923
<dl>
938924
<dd>
939925

940-
**request:** `Gooey.SmartGptPageRequest`
926+
**request:** `Gooey.AsyncFormSmartGptRequest`
941927

942928
</dd>
943929
</dl>
@@ -1129,7 +1115,7 @@ await client.functions.asyncFormFunctions();
11291115
<dl>
11301116
<dd>
11311117

1132-
**request:** `Gooey.FunctionsPageRequest`
1118+
**request:** `Gooey.AsyncFormFunctionsRequest`
11331119

11341120
</dd>
11351121
</dl>
@@ -1269,7 +1255,7 @@ await client.lipSyncing.asyncFormLipsync();
12691255
<dl>
12701256
<dd>
12711257

1272-
**request:** `Gooey.LipsyncPageRequest`
1258+
**request:** `Gooey.AsyncFormLipsyncRequest`
12731259

12741260
</dd>
12751261
</dl>
@@ -2317,9 +2303,7 @@ await client.misc.getBalance();
23172303
<dd>
23182304

23192305
```typescript
2320-
await client.misc.videoBotsBroadcast({
2321-
text: "text",
2322-
});
2306+
await client.misc.videoBotsBroadcast();
23232307
```
23242308

23252309
</dd>
@@ -2335,7 +2319,7 @@ await client.misc.videoBotsBroadcast({
23352319
<dl>
23362320
<dd>
23372321

2338-
**request:** `Gooey.BotBroadcastRequestModel`
2322+
**request:** `Gooey.VideoBotsBroadcastRequest`
23392323

23402324
</dd>
23412325
</dl>

0 commit comments

Comments
 (0)