Commit 700cb68c authored by ItzBlinkzy's avatar ItzBlinkzy

Replaced typo converstationId with conversationId

parent 542d1cdb
......@@ -95,7 +95,7 @@ the response.
| :------ | :------ | :------ |
| `message` | `string` | The plaintext message to send. |
| `opts` | `Object` | - |
| `opts.converstationId?` | `string` | - |
| `opts.conversationId?` | `string` | - |
| `opts.onProgress?` | (`partialResponse`: `string`) => `void` | - |
#### Returns
......
......@@ -86,11 +86,11 @@ export class ChatGPTAPI {
async sendMessage(
message: string,
opts: {
converstationId?: string
conversationId?: string
onProgress?: (partialResponse: string) => void
} = {}
): Promise<string> {
const { converstationId = uuidv4(), onProgress } = opts
const { conversationId = uuidv4(), onProgress } = opts
const accessToken = await this.refreshAccessToken()
......@@ -107,7 +107,7 @@ export class ChatGPTAPI {
}
],
model: 'text-davinci-002-render',
parent_message_id: converstationId
parent_message_id: conversationId
}
const url = `${this._backendApiBaseUrl}/conversation`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment