* Obtains a completion from the language model for the given prompt. * @param prompt A prompt string or an array of prompt sections. If a string is specified, * it is converted into a single "user" role prompt section.
(prompt: string | PromptSection[])
| 74 | * it is converted into a single "user" role prompt section. |
| 75 | */ |
| 76 | complete(prompt: string | PromptSection[]): Promise<Result<string>>; |
| 77 | } |
| 78 | |
| 79 | /** |
no outgoing calls
no test coverage detected