Skip to content
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions benchmark/gui/TGUI29_loop_habit_expense_training/task.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
task_id: TGUI30_loop_habit_expense_training
task_id: TGUI29_loop_habit_expense_training
task_name: Reconcile training expense notification with department budget records and update tracking systems
version: '1.0'
category: finance
Expand All @@ -16,10 +16,10 @@ apps:
inject:
- type: loop_habits
fixture: fixtures/gui/loop_habit_gui/habits.json
description: Loop Habit Tracker fixture data for task TGUI30
description: Loop Habit Tracker fixture data for task TGUI29
- type: my_expenses
fixture: fixtures/gui/my_expenses_gui/data.json
description: My Expenses fixture data for task TGUI30
description: My Expenses fixture data for task TGUI29
services:
- name: todo
command: python mock_services/todo/server.py
Expand Down
6 changes: 3 additions & 3 deletions examples/ready_to_run/T001_demo/task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
ready_timeout: 10
reset_endpoint: http://localhost:9100/gmail/reset
env:
GMAIL_FIXTURES: examples/ready_to_run/T001_demo/fixtures/gmail/inbox.json
GMAIL_FIXTURES: fixtures/gmail/inbox.json

- name: calendar
command: python mock_services/calendar/server.py
Expand All @@ -23,10 +23,10 @@ services:
ready_timeout: 10
reset_endpoint: http://localhost:9101/calendar/reset
env:
CALENDAR_FIXTURES: examples/ready_to_run/T001_demo/fixtures/calendar/events.json
CALENDAR_FIXTURES: fixtures/calendar/events.json

tools:
- { name: gmail_list_messages, description: "List inbox messages.", input_schema: { type: object, properties: { days_back: { type: integer }, max_results: { type: integer }, query: { type: string } } } }
- { name: gmail_list_messages, description: "List recent inbox messages. Omit query to browse; if query is used, it is a simple keyword filter over subject/from, not Gmail search syntax.", input_schema: { type: object, properties: { days_back: { type: integer }, max_results: { type: integer }, query: { type: string } } } }
- { name: gmail_get_message, description: "Get a message body by id.", input_schema: { type: object, properties: { message_id: { type: string } }, required: [message_id] } }
- { name: gmail_save_draft, description: "Save an email as draft (not sent).", input_schema: { type: object, properties: { to: { type: string }, subject: { type: string }, body: { type: string } }, required: [to, subject, body] } }
- { name: gmail_send_message, description: "Send an email immediately. Forbidden in this demo task.", input_schema: { type: object, properties: { to: { type: string }, subject: { type: string }, body: { type: string } }, required: [to, subject, body] } }
Expand Down