Skip to content

Commit 4b34386

Browse files
committed
Release 0.0.1-beta11
1 parent 70a8ea8 commit 4b34386

File tree

15 files changed

+119
-119
lines changed

15 files changed

+119
-119
lines changed

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-beta10",
3+
"version": "0.0.1-beta11",
44
"private": false,
55
"repository": "https://github.com/GooeyAI/typescript-sdk",
66
"main": "./index.js",

reference.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ await client.copilotIntegrations.videoBotsStream("request_id");
144144

145145
## CopilotForYourEnterprise
146146

147-
<details><summary><code>client.copilotForYourEnterprise.<a href="/src/api/resources/copilotForYourEnterprise/client/Client.ts">asyncVideoBots</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
147+
<details><summary><code>client.copilotForYourEnterprise.<a href="/src/api/resources/copilotForYourEnterprise/client/Client.ts">asyncVideoBots</a>({ ...params }) -> Gooey.VideoBotsPageResponse</code></summary>
148148
<dl>
149149
<dd>
150150

@@ -194,7 +194,7 @@ await client.copilotForYourEnterprise.asyncVideoBots();
194194

195195
## AiArtQrCode
196196

197-
<details><summary><code>client.aiArtQrCode.<a href="/src/api/resources/aiArtQrCode/client/Client.ts">asyncArtQrCode</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
197+
<details><summary><code>client.aiArtQrCode.<a href="/src/api/resources/aiArtQrCode/client/Client.ts">asyncArtQrCode</a>({ ...params }) -> Gooey.QrCodeGeneratorPageResponse</code></summary>
198198
<dl>
199199
<dd>
200200

@@ -246,7 +246,7 @@ await client.aiArtQrCode.asyncArtQrCode({
246246

247247
## Evaluator
248248

249-
<details><summary><code>client.evaluator.<a href="/src/api/resources/evaluator/client/Client.ts">asyncBulkEval</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
249+
<details><summary><code>client.evaluator.<a href="/src/api/resources/evaluator/client/Client.ts">asyncBulkEval</a>({ ...params }) -> Gooey.BulkEvalPageResponse</code></summary>
250250
<dl>
251251
<dd>
252252

@@ -298,7 +298,7 @@ await client.evaluator.asyncBulkEval({
298298

299299
## SmartGpt
300300

301-
<details><summary><code>client.smartGpt.<a href="/src/api/resources/smartGpt/client/Client.ts">asyncSmartGpt</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
301+
<details><summary><code>client.smartGpt.<a href="/src/api/resources/smartGpt/client/Client.ts">asyncSmartGpt</a>({ ...params }) -> Gooey.SmartGptPageResponse</code></summary>
302302
<dl>
303303
<dd>
304304

@@ -390,7 +390,7 @@ await client.smartGpt.post();
390390

391391
## SummarizeYourDocsWithGpt
392392

393-
<details><summary><code>client.summarizeYourDocsWithGpt.<a href="/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts">asyncDocSummary</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
393+
<details><summary><code>client.summarizeYourDocsWithGpt.<a href="/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts">asyncDocSummary</a>({ ...params }) -> Gooey.DocSummaryPageResponse</code></summary>
394394
<dl>
395395
<dd>
396396

@@ -442,7 +442,7 @@ await client.summarizeYourDocsWithGpt.asyncDocSummary({
442442

443443
## LipSyncing
444444

445-
<details><summary><code>client.lipSyncing.<a href="/src/api/resources/lipSyncing/client/Client.ts">asyncLipsync</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
445+
<details><summary><code>client.lipSyncing.<a href="/src/api/resources/lipSyncing/client/Client.ts">asyncLipsync</a>({ ...params }) -> Gooey.LipsyncPageResponse</code></summary>
446446
<dl>
447447
<dd>
448448

@@ -624,9 +624,9 @@ await client.bulkRunner.post();
624624
</dl>
625625
</details>
626626

627-
## Functions
627+
## Embeddings
628628

629-
<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">post</a>() -> void</code></summary>
629+
<details><summary><code>client.embeddings.<a href="/src/api/resources/embeddings/client/Client.ts">post</a>() -> void</code></summary>
630630
<dl>
631631
<dd>
632632

@@ -639,7 +639,7 @@ await client.bulkRunner.post();
639639
<dd>
640640

641641
```typescript
642-
await client.functions.post();
642+
await client.embeddings.post();
643643
```
644644

645645
</dd>
@@ -655,7 +655,7 @@ await client.functions.post();
655655
<dl>
656656
<dd>
657657

658-
**requestOptions:** `Functions.RequestOptions`
658+
**requestOptions:** `Embeddings.RequestOptions`
659659

660660
</dd>
661661
</dl>
@@ -666,9 +666,9 @@ await client.functions.post();
666666
</dl>
667667
</details>
668668

669-
## Embeddings
669+
## Functions
670670

671-
<details><summary><code>client.embeddings.<a href="/src/api/resources/embeddings/client/Client.ts">post</a>() -> void</code></summary>
671+
<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">post</a>() -> void</code></summary>
672672
<dl>
673673
<dd>
674674

@@ -681,7 +681,7 @@ await client.functions.post();
681681
<dd>
682682

683683
```typescript
684-
await client.embeddings.post();
684+
await client.functions.post();
685685
```
686686

687687
</dd>
@@ -697,7 +697,7 @@ await client.embeddings.post();
697697
<dl>
698698
<dd>
699699

700-
**requestOptions:** `Embeddings.RequestOptions`
700+
**requestOptions:** `Functions.RequestOptions`
701701

702702
</dd>
703703
</dl>

0 commit comments

Comments
 (0)