Skip to content

Commit 63bb681

Browse files
committed
chore: gpt does not like th overloads
1 parent b44f3ff commit 63bb681

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

src/types/llmService/LLMService.ts

-23
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,6 @@
99
* Interface representing a service for calling a Large Language Model (LLM).
1010
*/
1111
export interface LLMServiceInterface {
12-
/**
13-
* Calls the LLM with the provided engineered prompt.
14-
* @param engineeredPrompt - The prompt that has been engineered for the LLM.
15-
* @returns A promise that resolves to the LLM's response as a string.
16-
*/
17-
callLLM(engineeredPrompt: string): Promise<string>;
18-
19-
/**
20-
* Calls the LLM with the provided engineered prompt and prompt ID.
21-
* @param engineeredPrompt - The prompt that has been engineered for the LLM.
22-
* @param promptId - The ID of the prompt.
23-
* @returns A promise that resolves to the LLM's response as a string.
24-
*/
25-
callLLM(engineeredPrompt: string, promptId: string): Promise<string>;
26-
27-
/**
28-
* Calls the LLM with the provided engineered prompt and input token limit.
29-
* @param engineeredPrompt - The prompt that has been engineered for the LLM.
30-
* @param inputTokenLimit - The limit on the number of input tokens.
31-
* @returns A promise that resolves to the LLM's response as a string.
32-
*/
33-
callLLM(engineeredPrompt: string, inputTokenLimit: number): Promise<string>;
34-
3512
/**
3613
* Calls the LLM with the provided engineered prompt, prompt ID, and input token limit.
3714
* @param engineeredPrompt - The prompt that has been engineered for the LLM.

0 commit comments

Comments
 (0)