We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cd8bf7 commit ea9be01Copy full SHA for ea9be01
src/types/llmService/LLMService.ts
@@ -28,10 +28,10 @@ export interface LLMServiceInterface {
28
export type CallLLMOptions = {
29
// Values to be added to the parameters property on the request.
30
parameters?: {
31
- guided_json?: string;
+ guided_json?: string; // TODO: define the type in detail
32
};
33
// Properties to be added to the body of the request.
34
properties?: {
35
- stop_sequence?: string[];
+ stop_sequence?: string[]; // TODO: define the type in detail
36
37
0 commit comments