feat(market-intel): Finalize Level 4 Competitive Radar (Semantics & Relations)
- Implemented semantic classification for Products (e.g. 'Cleaning', 'Logistics') and Battlecards (e.g. 'Price', 'Support'). - Created 'import_competitive_radar.py' for full 4-database relational import to Notion. - Updated Orchestrator with new prompts for structured output. - Cleaned up obsolete scripts.
This commit is contained in:
@@ -42,6 +42,7 @@ export interface Analysis {
|
||||
portfolio: {
|
||||
product: string;
|
||||
purpose: string;
|
||||
category?: string;
|
||||
}[];
|
||||
target_industries: string[];
|
||||
delivery_model: string;
|
||||
@@ -76,8 +77,8 @@ export interface Battlecard {
|
||||
focus: string;
|
||||
positioning: string;
|
||||
};
|
||||
strengths_vs_weaknesses: string[];
|
||||
landmine_questions: string[];
|
||||
strengths_vs_weaknesses: (string | { text: string; category: string })[];
|
||||
landmine_questions: (string | { text: string; category: string })[];
|
||||
silver_bullet: string;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user