We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63bb681 commit cb5de6dCopy full SHA for cb5de6d
src/types/llmService/LLMService.ts
@@ -13,12 +13,12 @@ export interface LLMServiceInterface {
13
* Calls the LLM with the provided engineered prompt, prompt ID, and input token limit.
14
* @param engineeredPrompt - The prompt that has been engineered for the LLM.
15
* @param promptId - The ID of the prompt (optional).
16
- * @param inputTokenLimit - The limit on the number of input tokens (optional).
+ * @param outputTokenLimit - The limit on the number of output tokens (optional).
17
* @returns A promise that resolves to the LLM's response as a string.
18
*/
19
callLLM(
20
engineeredPrompt: string,
21
promptId?: string,
22
- inputTokenLimit?: number
+ outputTokenLimit?: number
23
): Promise<string>;
24
}
0 commit comments