forked from transitive-bullshit/agentic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e4ddd6
commit 5c49e20
Showing
14 changed files
with
823 additions
and
214 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
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 |
---|---|---|
|
@@ -20,7 +20,6 @@ | |
- [isFinal](ChatGPTError.md#isfinal) | ||
- [statusCode](ChatGPTError.md#statuscode) | ||
- [statusText](ChatGPTError.md#statustext) | ||
- [type](ChatGPTError.md#type) | ||
|
||
## Constructors | ||
|
||
|
@@ -67,7 +66,7 @@ node_modules/.pnpm/[email protected]/node_modules/typescript/lib/lib.es2022.error | |
|
||
#### Defined in | ||
|
||
[src/types.ts:51](https://github.com/transitive-bullshit/chatgpt-api/blob/607fccf/src/types.ts#L51) | ||
[src/types.ts:47](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L47) | ||
|
||
___ | ||
|
||
|
@@ -77,7 +76,7 @@ ___ | |
|
||
#### Defined in | ||
|
||
[src/types.ts:50](https://github.com/transitive-bullshit/chatgpt-api/blob/607fccf/src/types.ts#L50) | ||
[src/types.ts:46](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L46) | ||
|
||
___ | ||
|
||
|
@@ -87,7 +86,7 @@ ___ | |
|
||
#### Defined in | ||
|
||
[src/types.ts:48](https://github.com/transitive-bullshit/chatgpt-api/blob/607fccf/src/types.ts#L48) | ||
[src/types.ts:44](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L44) | ||
|
||
___ | ||
|
||
|
@@ -97,14 +96,4 @@ ___ | |
|
||
#### Defined in | ||
|
||
[src/types.ts:49](https://github.com/transitive-bullshit/chatgpt-api/blob/607fccf/src/types.ts#L49) | ||
|
||
___ | ||
|
||
### type | ||
|
||
• `Optional` **type**: [`ChatGPTErrorType`](../modules.md#chatgpterrortype) | ||
|
||
#### Defined in | ||
|
||
[src/types.ts:52](https://github.com/transitive-bullshit/chatgpt-api/blob/607fccf/src/types.ts#L52) | ||
[src/types.ts:45](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L45) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[chatgpt](../readme.md) / [Exports](../modules.md) / [openai](../modules/openai.md) / ChatCompletionRequestMessage | ||
|
||
# Interface: ChatCompletionRequestMessage | ||
|
||
[openai](../modules/openai.md).ChatCompletionRequestMessage | ||
|
||
**`Export`** | ||
|
||
**`Interface`** | ||
|
||
ChatCompletionRequestMessage | ||
|
||
## Table of contents | ||
|
||
### Properties | ||
|
||
- [content](openai.ChatCompletionRequestMessage.md#content) | ||
- [name](openai.ChatCompletionRequestMessage.md#name) | ||
- [role](openai.ChatCompletionRequestMessage.md#role) | ||
|
||
## Properties | ||
|
||
### content | ||
|
||
• **content**: `string` | ||
|
||
The contents of the message | ||
|
||
**`Memberof`** | ||
|
||
ChatCompletionRequestMessage | ||
|
||
#### Defined in | ||
|
||
[src/types.ts:178](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L178) | ||
|
||
___ | ||
|
||
### name | ||
|
||
• `Optional` **name**: `string` | ||
|
||
The name of the user in a multi-user chat | ||
|
||
**`Memberof`** | ||
|
||
ChatCompletionRequestMessage | ||
|
||
#### Defined in | ||
|
||
[src/types.ts:184](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L184) | ||
|
||
___ | ||
|
||
### role | ||
|
||
• **role**: [`ChatCompletionRequestMessageRoleEnum`](../modules/openai.md#chatcompletionrequestmessageroleenum-1) | ||
|
||
The role of the author of this message. | ||
|
||
**`Memberof`** | ||
|
||
ChatCompletionRequestMessage | ||
|
||
#### Defined in | ||
|
||
[src/types.ts:172](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L172) |
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,50 @@ | ||
[chatgpt](../readme.md) / [Exports](../modules.md) / [openai](../modules/openai.md) / ChatCompletionResponseMessage | ||
|
||
# Interface: ChatCompletionResponseMessage | ||
|
||
[openai](../modules/openai.md).ChatCompletionResponseMessage | ||
|
||
**`Export`** | ||
|
||
**`Interface`** | ||
|
||
ChatCompletionResponseMessage | ||
|
||
## Table of contents | ||
|
||
### Properties | ||
|
||
- [content](openai.ChatCompletionResponseMessage.md#content) | ||
- [role](openai.ChatCompletionResponseMessage.md#role) | ||
|
||
## Properties | ||
|
||
### content | ||
|
||
• **content**: `string` | ||
|
||
The contents of the message | ||
|
||
**`Memberof`** | ||
|
||
ChatCompletionResponseMessage | ||
|
||
#### Defined in | ||
|
||
[src/types.ts:210](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L210) | ||
|
||
___ | ||
|
||
### role | ||
|
||
• **role**: [`ChatCompletionResponseMessageRoleEnum`](../modules/openai.md#chatcompletionresponsemessageroleenum-1) | ||
|
||
The role of the author of this message. | ||
|
||
**`Memberof`** | ||
|
||
ChatCompletionResponseMessage | ||
|
||
#### Defined in | ||
|
||
[src/types.ts:204](https://github.com/transitive-bullshit/chatgpt-api/blob/1e4ddd6/src/types.ts#L204) |
Oops, something went wrong.