chore(monorepo/server): fix build errors due to wrong imports

This commit is contained in:
Elian Doran
2025-04-22 19:21:19 +03:00
parent e655963004
commit 6e35806340
2 changed files with 2 additions and 4 deletions

View File

@@ -2,6 +2,7 @@
* Message formatting utilities for different LLM providers
*/
import type { Message } from "../../ai_interface.js";
import { CONTEXT_PROMPTS } from "../../constants/llm_prompt_constants.js";
/**
* Interface for message formatters
@@ -111,9 +112,6 @@ export function buildContextFromNotes(sources: any[], query: string): string {
return query || '';
}
// Import the CONTEXT_PROMPTS constant
const { CONTEXT_PROMPTS } = require('../../constants/llm_prompt_constants.js');
// Use the template from the constants file, replacing placeholders
return CONTEXT_PROMPTS.CONTEXT_NOTES_WRAPPER
.replace('{noteContexts}', noteContexts)