From 0d17270457f8b07c2de50d317847a3a97f53ff4d Mon Sep 17 00:00:00 2001 From: panding Date: Thu, 25 Jun 2026 21:59:11 +0800 Subject: [PATCH] Fix TGUI29 GUI task id metadata --- benchmark/gui/TGUI29_loop_habit_expense_training/task.yaml | 6 +++--- examples/ready_to_run/T001_demo/task.yaml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/benchmark/gui/TGUI29_loop_habit_expense_training/task.yaml b/benchmark/gui/TGUI29_loop_habit_expense_training/task.yaml index c374b40..195a5f9 100644 --- a/benchmark/gui/TGUI29_loop_habit_expense_training/task.yaml +++ b/benchmark/gui/TGUI29_loop_habit_expense_training/task.yaml @@ -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 @@ -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 diff --git a/examples/ready_to_run/T001_demo/task.yaml b/examples/ready_to_run/T001_demo/task.yaml index 290cb6b..a8787c5 100644 --- a/examples/ready_to_run/T001_demo/task.yaml +++ b/examples/ready_to_run/T001_demo/task.yaml @@ -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 @@ -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] } }