Skip to content

Commit

Permalink
Merge pull request #85 from auth0-lab/simplify_events_prompt
Browse files Browse the repository at this point in the history
fix: simplify events prompts
  • Loading branch information
jcenturion authored Oct 15, 2024
2 parents 662ba88 + fce278c commit 348ea7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llm/tools/schedule/get-events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export default defineTool("get_events", () => {
const history = getHistory();

return {
description: `List at most 3 funny imaginary events between user highlighted dates that describe stock activity. Make sure events dates are after the start date "${new Date().toLocaleDateString(
description: `List up to 3 fictional stock events occurring after the start date '${new Date().toLocaleDateString(
"en-CA"
)}"`,
)}' and between user-specified dates.`,
parameters: z.object({
symbol: z.string().describe("The name or symbol of the stock. e.g. DOGE/AAPL/USD."),
events: z.array(
Expand Down

0 comments on commit 348ea7d

Please sign in to comment.