Skip to content

Commit

Permalink
Release 0.0.1-beta12
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 5, 2024
1 parent 4b34386 commit 9b16eaf
Show file tree
Hide file tree
Showing 62 changed files with 579 additions and 536 deletions.
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-beta11",
"version": "0.0.1-beta12",
"private": false,
"repository": "https://github.com/GooeyAI/typescript-sdk",
"main": "./index.js",
Expand Down
116 changes: 30 additions & 86 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ await client.copilotForYourEnterprise.asyncVideoBots();
</dl>
</details>

## AiArtQrCode
## Evaluator

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

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

```typescript
await client.aiArtQrCode.asyncArtQrCode({
textPrompt: "text_prompt",
await client.evaluator.asyncBulkEval({
documents: ["documents"],
});
```

Expand All @@ -225,15 +225,15 @@ await client.aiArtQrCode.asyncArtQrCode({
<dl>
<dd>

**request:** `Gooey.QrCodeGeneratorPageRequest`
**request:** `Gooey.BulkEvalPageRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `AiArtQrCode.RequestOptions`
**requestOptions:** `Evaluator.RequestOptions`

</dd>
</dl>
Expand All @@ -244,9 +244,9 @@ await client.aiArtQrCode.asyncArtQrCode({
</dl>
</details>

## Evaluator
## SmartGpt

<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.smartGpt.<a href="/src/api/resources/smartGpt/client/Client.ts">asyncSmartGpt</a>({ ...params }) -> Gooey.SmartGptPageResponse</code></summary>
<dl>
<dd>

Expand All @@ -259,8 +259,8 @@ await client.aiArtQrCode.asyncArtQrCode({
<dd>

```typescript
await client.evaluator.asyncBulkEval({
documents: ["documents"],
await client.smartGpt.asyncSmartGpt({
inputPrompt: "input_prompt",
});
```

Expand All @@ -277,15 +277,15 @@ await client.evaluator.asyncBulkEval({
<dl>
<dd>

**request:** `Gooey.BulkEvalPageRequest`
**request:** `Gooey.SmartGptPageRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `Evaluator.RequestOptions`
**requestOptions:** `SmartGpt.RequestOptions`

</dd>
</dl>
Expand All @@ -296,9 +296,7 @@ await client.evaluator.asyncBulkEval({
</dl>
</details>

## 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">post</a>() -> void</code></summary>
<dl>
<dd>

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

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

</dd>
Expand All @@ -329,14 +325,6 @@ await client.smartGpt.asyncSmartGpt({
<dl>
<dd>

**request:** `Gooey.SmartGptPageRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `SmartGpt.RequestOptions`

</dd>
Expand All @@ -348,7 +336,9 @@ await client.smartGpt.asyncSmartGpt({
</dl>
</details>

<details><summary><code>client.smartGpt.<a href="/src/api/resources/smartGpt/client/Client.ts">post</a>() -> void</code></summary>
## Functions

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

Expand All @@ -361,7 +351,7 @@ await client.smartGpt.asyncSmartGpt({
<dd>

```typescript
await client.smartGpt.post();
await client.functions.asyncFunctions();
```

</dd>
Expand All @@ -377,7 +367,15 @@ await client.smartGpt.post();
<dl>
<dd>

**requestOptions:** `SmartGpt.RequestOptions`
**request:** `Gooey.FunctionsPageRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `Functions.RequestOptions`

</dd>
</dl>
Expand All @@ -388,9 +386,7 @@ await client.smartGpt.post();
</dl>
</details>

## SummarizeYourDocsWithGpt

<details><summary><code>client.summarizeYourDocsWithGpt.<a href="/src/api/resources/summarizeYourDocsWithGpt/client/Client.ts">asyncDocSummary</a>({ ...params }) -> Gooey.DocSummaryPageResponse</code></summary>
<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">post</a>() -> void</code></summary>
<dl>
<dd>

Expand All @@ -403,9 +399,7 @@ await client.smartGpt.post();
<dd>

```typescript
await client.summarizeYourDocsWithGpt.asyncDocSummary({
documents: ["documents"],
});
await client.functions.post();
```

</dd>
Expand All @@ -421,15 +415,7 @@ await client.summarizeYourDocsWithGpt.asyncDocSummary({
<dl>
<dd>

**request:** `Gooey.DocSummaryPageRequest`

</dd>
</dl>

<dl>
<dd>

**requestOptions:** `SummarizeYourDocsWithGpt.RequestOptions`
**requestOptions:** `Functions.RequestOptions`

</dd>
</dl>
Expand Down Expand Up @@ -665,45 +651,3 @@ await client.embeddings.post();
</dd>
</dl>
</details>

## Functions

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

#### 🔌 Usage

<dl>
<dd>

<dl>
<dd>

```typescript
await client.functions.post();
```

</dd>
</dl>
</dd>
</dl>

#### ⚙️ Parameters

<dl>
<dd>

<dl>
<dd>

**requestOptions:** `Functions.RequestOptions`

</dd>
</dl>
</dd>
</dl>

</dd>
</dl>
</details>
Loading

0 comments on commit 9b16eaf

Please sign in to comment.