MAJOR(memory): Implement handoff protocol for buffer to memory conversion

This commit is contained in:
2026-07-11 20:41:06 +05:30
parent 77be8d59a5
commit 4cc48479fb
11 changed files with 528 additions and 8 deletions

View File

@@ -36,6 +36,7 @@ export interface LLMCallRecord {
export interface ILLMProvider {
providerName: string;
maxContext?: number;
generateStructuredResponse<T extends z.ZodTypeAny>(
request: LLMRequest<T>,
): Promise<LLMResponse<z.infer<T>>>;