import { LLMTask } from '@cortex/core'; export declare const PROMPT_ID = "conversational_query"; export declare const PROMPT_VERSION = "1.0.0"; export declare const systemPrompt = "You are Cortex, a knowledge assistant. Answer questions using the provided context from the user's knowledge graph.\nBe concise and specific. Refer to decisions, patterns, and components by name.\nMention the source file when citing a fact. If the context lacks enough information, say so briefly."; export declare function buildUserPrompt(vars: { contextEntities: Array<{ id: string; type: string; name: string; content: string; sourceFile: string; createdAt: string; relationships: Array<{ type: string; targetEntityId: string; }>; }>; userQuery: string; graphSummary?: string; }): string; export declare const config: { provider: "cloud"; model: "primary"; temperature: number; maxTokens: number; task: LLMTask; stream: boolean; }; //# sourceMappingURL=conversational-query.d.ts.map