Skip to content

Commit

Permalink
Release 0.0.1-beta13
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 5, 2024
1 parent 9b16eaf commit 48edf39
Show file tree
Hide file tree
Showing 246 changed files with 4,963 additions and 1,318 deletions.
9 changes: 1 addition & 8 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 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-beta12",
"version": "0.0.1-beta13",
"private": false,
"repository": "https://github.com/GooeyAI/typescript-sdk",
"main": "./index.js",
Expand Down
38 changes: 17 additions & 21 deletions reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Reference

<details><summary><code>client.<a href="/src/Client.ts">healthStatusGet</a>() -> unknown</code></summary>
<details><summary><code>client.<a href="/src/Client.ts">postV3VideoBotsAsync</a>() -> Gooey.VideoBotsPageResponse</code></summary>
<dl>
<dd>

Expand All @@ -13,7 +13,7 @@
<dd>

```typescript
await client.healthStatusGet();
await client.postV3VideoBotsAsync();
```

</dd>
Expand Down Expand Up @@ -144,7 +144,7 @@ await client.copilotIntegrations.videoBotsStream("request_id");

## CopilotForYourEnterprise

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

Expand All @@ -157,7 +157,7 @@ await client.copilotIntegrations.videoBotsStream("request_id");
<dd>

```typescript
await client.copilotForYourEnterprise.asyncVideoBots();
await client.copilotForYourEnterprise.asyncFormVideoBots();
```

</dd>
Expand All @@ -173,7 +173,7 @@ await client.copilotForYourEnterprise.asyncVideoBots();
<dl>
<dd>

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

</dd>
</dl>
Expand All @@ -194,7 +194,7 @@ await client.copilotForYourEnterprise.asyncVideoBots();

## Evaluator

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

Expand All @@ -207,9 +207,7 @@ await client.copilotForYourEnterprise.asyncVideoBots();
<dd>

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

</dd>
Expand All @@ -225,7 +223,7 @@ await client.evaluator.asyncBulkEval({
<dl>
<dd>

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

</dd>
</dl>
Expand All @@ -246,7 +244,7 @@ await client.evaluator.asyncBulkEval({

## SmartGpt

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

Expand All @@ -259,9 +257,7 @@ await client.evaluator.asyncBulkEval({
<dd>

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

</dd>
Expand All @@ -277,7 +273,7 @@ await client.smartGpt.asyncSmartGpt({
<dl>
<dd>

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

</dd>
</dl>
Expand Down Expand Up @@ -338,7 +334,7 @@ await client.smartGpt.post();

## Functions

<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">asyncFunctions</a>({ ...params }) -> Gooey.FunctionsPageResponse</code></summary>
<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">asyncFormFunctions</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
<dl>
<dd>

Expand All @@ -351,7 +347,7 @@ await client.smartGpt.post();
<dd>

```typescript
await client.functions.asyncFunctions();
await client.functions.asyncFormFunctions();
```

</dd>
Expand All @@ -367,7 +363,7 @@ await client.functions.asyncFunctions();
<dl>
<dd>

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

</dd>
</dl>
Expand Down Expand Up @@ -428,7 +424,7 @@ await client.functions.post();

## LipSyncing

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

Expand All @@ -441,7 +437,7 @@ await client.functions.post();
<dd>

```typescript
await client.lipSyncing.asyncLipsync();
await client.lipSyncing.asyncFormLipsync();
```

</dd>
Expand All @@ -457,7 +453,7 @@ await client.lipSyncing.asyncLipsync();
<dl>
<dd>

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

</dd>
</dl>
Expand Down
Loading

0 comments on commit 48edf39

Please sign in to comment.