Recovered state: integrated TrendSurferAgent, restored frontend/backend files, and cleaned up recovery scripts

This commit is contained in:
ajaysi
2026-02-08 13:56:57 +05:30
parent 1db10ccd0f
commit e404a86502
333 changed files with 42223 additions and 10875 deletions

View File

@@ -5,20 +5,6 @@
* and avoid unnecessary API calls. Shared by both CopilotKit and manual flows.
*/
interface CachedOutlineEntry {
outline: any[];
title_options?: string[];
research_keywords: string[];
created_at: string;
}
interface CachedContentEntry {
sections: Record<string, string>;
outline_ids: string[];
research_keywords: string[];
created_at: string;
}
class BlogWriterCacheService {
private readonly OUTLINE_CACHE_KEY = 'blog_outline';
private readonly TITLE_OPTIONS_CACHE_KEY = 'blog_title_options';