Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 48 additions & 12 deletions AI-Sports-Almanac/frontend/components/AgentChatPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,52 @@ const SUGGESTED_PROMPTS: Record<string, string[]> = {
'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?',
],
};

Expand All @@ -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?',
];
}

Expand Down