You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constSUMMARIZER_SYSTEM_PROMPT=`You are a text summarizer. Your sole purpose is to receive text and provide a concise, factual summary of it. Do not add any commentary or analysis. Focus on the key information presented in the text.`;
13
15
@@ -18,6 +20,9 @@ export class SummarizationService {
18
20
tollResponseParts: GeminiPart[],
19
21
modelConfig: OllamaModelConfig|ModelConfig,
20
22
): Promise<string|null>{
23
+
debugLogger.log(
24
+
`[SummarizationService] Starting summarization using model: ${modelConfig.model}`,
25
+
);
21
26
if('host'inmodelConfig){
22
27
constuserParts: OllamaPart[]=[];
23
28
for(constpartoftollResponseParts){
@@ -58,6 +63,18 @@ export class SummarizationService {
0 commit comments