Skip to content

Commit fd2a8e9

Browse files
committed
Release 0.0.1-beta18
1 parent c0a013c commit fd2a8e9

File tree

240 files changed

+1440
-1371
lines changed

Some content is hidden

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

240 files changed

+1440
-1371
lines changed

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,14 @@ 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();
22+
await client.animate({
23+
animationPrompts: [
24+
{
25+
frame: "frame",
26+
prompt: "prompt",
27+
},
28+
],
29+
});
2330
```
2431

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

33-
const request: Gooey.AsyncFormVideoBotsRequest = {
40+
const request: Gooey.CreateStreamRequest = {
3441
...
3542
};
3643
```

package.json

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

reference.md

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

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

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

6365
</dd>
@@ -73,6 +75,14 @@ await client.copilotIntegrations.videoBotsStreamCreate();
7375
<dl>
7476
<dd>
7577

78+
**request:** `Gooey.CreateStreamRequest`
79+
80+
</dd>
81+
</dl>
82+
83+
<dl>
84+
<dd>
85+
7686
**requestOptions:** `CopilotIntegrations.RequestOptions`
7787

7888
</dd>
@@ -163,7 +173,7 @@ await client.copilotForYourEnterprise.asyncFormVideoBots();
163173
<dl>
164174
<dd>
165175

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

168178
</dd>
169179
</dl>
@@ -651,7 +661,9 @@ await client.bulkRunner.post();
651661
<dd>
652662

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

657669
</dd>
@@ -667,7 +679,7 @@ await client.evaluator.asyncFormBulkEval();
667679
<dl>
668680
<dd>
669681

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

672684
</dd>
673685
</dl>
@@ -907,7 +919,9 @@ await client.searchYourDocsWithGpt.statusDocSearch({
907919
<dd>
908920

909921
```typescript
910-
await client.smartGpt.asyncFormSmartGpt();
922+
await client.smartGpt.asyncFormSmartGpt({
923+
inputPrompt: "input_prompt",
924+
});
911925
```
912926

913927
</dd>
@@ -923,7 +937,7 @@ await client.smartGpt.asyncFormSmartGpt();
923937
<dl>
924938
<dd>
925939

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

928942
</dd>
929943
</dl>
@@ -1115,7 +1129,7 @@ await client.functions.asyncFormFunctions();
11151129
<dl>
11161130
<dd>
11171131

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

11201134
</dd>
11211135
</dl>
@@ -1255,7 +1269,7 @@ await client.lipSyncing.asyncFormLipsync();
12551269
<dl>
12561270
<dd>
12571271

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

12601274
</dd>
12611275
</dl>
@@ -2303,7 +2317,9 @@ await client.misc.getBalance();
23032317
<dd>
23042318

23052319
```typescript
2306-
await client.misc.videoBotsBroadcast();
2320+
await client.misc.videoBotsBroadcast({
2321+
text: "text",
2322+
});
23072323
```
23082324

23092325
</dd>
@@ -2319,7 +2335,7 @@ await client.misc.videoBotsBroadcast();
23192335
<dl>
23202336
<dd>
23212337

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

23242340
</dd>
23252341
</dl>

0 commit comments

Comments
 (0)