diff --git a/assistant/system-prompts.ts b/assistant/system-prompts.ts index 1944187..597c5b5 100644 --- a/assistant/system-prompts.ts +++ b/assistant/system-prompts.ts @@ -69,7 +69,10 @@ Ensure responses do not exceed 1500 characters. }, ]; - const events = return_current_events().map((event) => event.eventId); + const events = return_current_events().map((event) => ({ + id: event.eventId, + desc: event.description, + })); const creator_system_messages: OpenAI.ChatCompletionSystemMessageParam[] = [ { role: "system",