-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.456.0
- Loading branch information
1 parent
4281d30
commit 4f6976b
Showing
968 changed files
with
86,241 additions
and
494 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/orq-rc/docs/models/errors/updatepromptresponsebody.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# UpdatePromptResponseBody | ||
|
||
Prompt not found. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { UpdatePromptResponseBody } from "@orq-ai/node/models/errors"; | ||
|
||
// No examples available for this model | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------ | ------------------ | ------------------ | ------------------ | | ||
| `message` | *string* | :heavy_check_mark: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# CreatePrompt21 | ||
|
||
Text content part of a prompt message | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { CreatePrompt21 } from "@orq-ai/node/models/operations"; | ||
|
||
let value: CreatePrompt21 = { | ||
type: "text", | ||
text: "<value>", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | | ||
| `type` | [operations.CreatePrompt2Type](../../models/operations/createprompt2type.md) | :heavy_check_mark: | N/A | | ||
| `text` | *string* | :heavy_check_mark: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# CreatePrompt22 | ||
|
||
The image part of the prompt message. Only supported with vision models. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { CreatePrompt22 } from "@orq-ai/node/models/operations"; | ||
|
||
let value: CreatePrompt22 = { | ||
type: "image_url", | ||
imageUrl: { | ||
url: "https://thorough-scale.org/", | ||
}, | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | | ||
| `type` | [operations.CreatePrompt2PromptsType](../../models/operations/createprompt2promptstype.md) | :heavy_check_mark: | N/A | | ||
| `imageUrl` | [operations.CreatePrompt2ImageUrl](../../models/operations/createprompt2imageurl.md) | :heavy_check_mark: | N/A | |
18 changes: 18 additions & 0 deletions
18
packages/orq-rc/docs/models/operations/createprompt2imageurl.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# CreatePrompt2ImageUrl | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { CreatePrompt2ImageUrl } from "@orq-ai/node/models/operations"; | ||
|
||
let value: CreatePrompt2ImageUrl = { | ||
url: "https://intent-adult.org", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | | ||
| `url` | *string* | :heavy_check_mark: | Either a URL of the image or the base64 encoded data URI. | | ||
| `detail` | *string* | :heavy_minus_sign: | Specifies the detail level of the image. Currently only supported with OpenAI models | |
21 changes: 21 additions & 0 deletions
21
packages/orq-rc/docs/models/operations/createprompt2prompts1.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# CreatePrompt2Prompts1 | ||
|
||
Text content part of a prompt message | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { CreatePrompt2Prompts1 } from "@orq-ai/node/models/operations"; | ||
|
||
let value: CreatePrompt2Prompts1 = { | ||
type: "text", | ||
text: "<value>", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- | | ||
| `type` | [operations.CreatePrompt2PromptsResponseType](../../models/operations/createprompt2promptsresponsetype.md) | :heavy_check_mark: | N/A | | ||
| `text` | *string* | :heavy_check_mark: | N/A | |
23 changes: 23 additions & 0 deletions
23
packages/orq-rc/docs/models/operations/createprompt2prompts2.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# CreatePrompt2Prompts2 | ||
|
||
The image part of the prompt message. Only supported with vision models. | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { CreatePrompt2Prompts2 } from "@orq-ai/node/models/operations"; | ||
|
||
let value: CreatePrompt2Prompts2 = { | ||
type: "image_url", | ||
imageUrl: { | ||
url: "https://scientific-mentor.com/", | ||
}, | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | | ||
| `type` | [operations.CreatePrompt2PromptsResponse200Type](../../models/operations/createprompt2promptsresponse200type.md) | :heavy_check_mark: | N/A | | ||
| `imageUrl` | [operations.CreatePrompt2PromptsImageUrl](../../models/operations/createprompt2promptsimageurl.md) | :heavy_check_mark: | N/A | |
19 changes: 19 additions & 0 deletions
19
packages/orq-rc/docs/models/operations/createprompt2promptsimageurl.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# CreatePrompt2PromptsImageUrl | ||
|
||
## Example Usage | ||
|
||
```typescript | ||
import { CreatePrompt2PromptsImageUrl } from "@orq-ai/node/models/operations"; | ||
|
||
let value: CreatePrompt2PromptsImageUrl = { | ||
url: "https://right-heartbeat.org/", | ||
}; | ||
``` | ||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | | ||
| `id` | *string* | :heavy_minus_sign: | The orq.ai id of the image | | ||
| `url` | *string* | :heavy_check_mark: | Either a URL of the image or the base64 encoded data URI. | | ||
| `detail` | *string* | :heavy_minus_sign: | Specifies the detail level of the image. Currently only supported with OpenAI models | |
Oops, something went wrong.