diff --git a/AI-Sports-Almanac/frontend/components/AgentChatPanel.tsx b/AI-Sports-Almanac/frontend/components/AgentChatPanel.tsx index 783647a..10206c8 100644 --- a/AI-Sports-Almanac/frontend/components/AgentChatPanel.tsx +++ b/AI-Sports-Almanac/frontend/components/AgentChatPanel.tsx @@ -50,16 +50,52 @@ const SUGGESTED_PROMPTS: Record = { 'What\'s your top pick for the next race?', ], soccer: [ - 'What\'s the best bet today across all cards?', - 'Give me your top five selections for today', - 'Any market movers today?', - 'What\'s your top pick for the next race?', + 'Who wins the big match today?', + 'Best accumulator picks right now?', + 'Any value bets today?', + 'Who\'s in form this week?', ], golf: [ - 'What\'s the best bet today across all cards?', - 'Give me your top five selections for today', - 'Any market movers today?', - 'What\'s your top pick for the next race?', + 'Who\'s the favourite this week?', + 'Best each-way picks for the tournament?', + 'Any dark horses worth backing?', + 'Who\'s in form on this course?', + ], + rugby: [ + 'Who wins today\'s big game?', + 'Best try scorer bets?', + 'Any value in the handicap markets?', + 'Who\'s the form team right now?', + ], + nfl: [ + 'Who wins the big game today?', + 'Best player prop bets?', + 'Any value spreads this week?', + 'Who\'s the form team right now?', + ], + nba: [ + 'Who wins tonight\'s game?', + 'Best player prop bets tonight?', + 'Any value in the totals market?', + 'Who\'s on a hot streak?', + ], + mma: [ + 'Who wins the main event?', + 'Best method of victory bet?', + 'Any value underdogs on the card?', + 'Who has the momentum going in?', + ], + boxing: [ + 'Who wins the main event?', + 'Best method of victory bet?', + 'Any value underdogs on the card?', + 'Who has the momentum going in?', + ], + darts: [ + 'Who wins today\'s match?', + 'Best checkout bet?', + 'Any value underdogs today?', + 'Who\'s in the best form?', ], }; @@ -68,10 +104,10 @@ function getSuggestedPrompts(sport: string): string[] { if (sport.startsWith(key)) return SUGGESTED_PROMPTS[key]; } return [ - 'What\'s the best bet today across all cards?', - 'Give me your top five selections for today', - 'Any market movers today?', - 'What\'s your top pick for the next race?', + 'What\'s your top prediction today?', + 'Any high confidence picks?', + 'What markets do you recommend?', + 'What\'s the best value bet right now?', ]; }