Fix internal task codes (T301/T502/T601/T603/T604) in docstrings with readable task names
Browse files- workspace/03_Social_Interaction/task_1_meeting_negotiation/exec/mock_services/calendar/server.py +1 -1
- workspace/03_Social_Interaction/task_1_meeting_negotiation/exec/mock_services/gmail/server.py +1 -1
- workspace/03_Social_Interaction/task_1_meeting_negotiation/exec/utils.py +1 -1
- workspace/03_Social_Interaction/task_2_chat_action_extraction/exec/mock_services/slack/server.py +1 -1
- workspace/03_Social_Interaction/task_2_chat_action_extraction/exec/utils.py +1 -1
- workspace/03_Social_Interaction/task_3_chat_multi_step_reasoning/exec/mock_services/slack/server.py +1 -1
- workspace/03_Social_Interaction/task_3_chat_multi_step_reasoning/exec/utils.py +1 -1
- workspace/03_Social_Interaction/task_4_chat_thread_consolidation/exec/mock_services/slack/server.py +1 -1
- workspace/03_Social_Interaction/task_4_chat_thread_consolidation/exec/utils.py +1 -1
- workspace/03_Social_Interaction/task_4_chat_thread_consolidation/gt/expected_consolidated_report.md +1 -1
- workspace/03_Social_Interaction/task_5_chat_escalation_routing/exec/mock_services/slack/server.py +1 -1
- workspace/03_Social_Interaction/task_5_chat_escalation_routing/exec/utils.py +1 -1
- workspace/03_Social_Interaction/task_6_chat_cross_dept_update_zh/exec/mock_services/slack/server.py +1 -1
- workspace/03_Social_Interaction/task_6_chat_cross_dept_update_zh/exec/utils.py +1 -1
workspace/03_Social_Interaction/task_1_meeting_negotiation/exec/mock_services/calendar/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Calendar API service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Calendar API service for meeting negotiation agent evaluation (FastAPI on port 9101)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_1_meeting_negotiation/exec/mock_services/gmail/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Gmail API service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Gmail API service for meeting negotiation agent evaluation (FastAPI on port 9100)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_1_meeting_negotiation/exec/utils.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
"""
|
| 2 |
-
Tool definitions for
|
| 3 |
|
| 4 |
Runner loads this module to get TOOLS and passes them to the LLM API.
|
| 5 |
"""
|
|
|
|
| 1 |
"""
|
| 2 |
+
Tool definitions for meeting negotiation agent evaluation (OpenAI function calling format).
|
| 3 |
|
| 4 |
Runner loads this module to get TOOLS and passes them to the LLM API.
|
| 5 |
"""
|
workspace/03_Social_Interaction/task_2_chat_action_extraction/exec/mock_services/slack/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Slack-like team messaging service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Slack-like team messaging service for chat action extraction agent evaluation (FastAPI on port 9110)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_2_chat_action_extraction/exec/utils.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
"""
|
| 2 |
-
Tool definitions for
|
| 3 |
"""
|
| 4 |
|
| 5 |
TOOLS = [
|
|
|
|
| 1 |
"""
|
| 2 |
+
Tool definitions for chat action extraction agent evaluation (OpenAI function calling format).
|
| 3 |
"""
|
| 4 |
|
| 5 |
TOOLS = [
|
workspace/03_Social_Interaction/task_3_chat_multi_step_reasoning/exec/mock_services/slack/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Slack-like team messaging service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Slack-like team messaging service for chat multi-step reasoning agent evaluation (FastAPI on port 9110)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_3_chat_multi_step_reasoning/exec/utils.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
"""
|
| 2 |
-
Tool definitions for
|
| 3 |
"""
|
| 4 |
|
| 5 |
TOOLS = [
|
|
|
|
| 1 |
"""
|
| 2 |
+
Tool definitions for chat multi-step reasoning agent evaluation (OpenAI function calling format).
|
| 3 |
"""
|
| 4 |
|
| 5 |
TOOLS = [
|
workspace/03_Social_Interaction/task_4_chat_thread_consolidation/exec/mock_services/slack/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Slack-like team messaging service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Slack-like team messaging service for chat thread consolidation agent evaluation (FastAPI on port 9110)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_4_chat_thread_consolidation/exec/utils.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
"""
|
| 2 |
-
Tool definitions for
|
| 3 |
"""
|
| 4 |
|
| 5 |
TOOLS = [
|
|
|
|
| 1 |
"""
|
| 2 |
+
Tool definitions for chat thread consolidation agent evaluation (OpenAI function calling format).
|
| 3 |
"""
|
| 4 |
|
| 5 |
TOOLS = [
|
workspace/03_Social_Interaction/task_4_chat_thread_consolidation/gt/expected_consolidated_report.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
#
|
| 2 |
|
| 3 |
## 5 Contradictions to Identify and Reconcile
|
| 4 |
|
|
|
|
| 1 |
+
# Expected Consolidated Report — Ground Truth
|
| 2 |
|
| 3 |
## 5 Contradictions to Identify and Reconcile
|
| 4 |
|
workspace/03_Social_Interaction/task_5_chat_escalation_routing/exec/mock_services/slack/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Slack-like team messaging service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Slack-like team messaging service for chat escalation routing agent evaluation (FastAPI on port 9110)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_5_chat_escalation_routing/exec/utils.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Tool definitions for
|
| 2 |
TOOLS = [
|
| 3 |
{"type": "function", "function": {"name": "http_request", "description": "Send an HTTP request. Slack at http://localhost:9110, Contacts at http://localhost:9103.", "parameters": {"type": "object", "properties": {"method": {"type": "string", "enum": ["GET", "POST"], "default": "POST"}, "url": {"type": "string"}, "body": {"type": "object"}}, "required": ["url"]}}},
|
| 4 |
{"type": "function", "function": {"name": "write_file", "description": "Write content to a file.", "parameters": {"type": "object", "properties": {"path": {"type": "string"}, "content": {"type": "string"}}, "required": ["path", "content"]}}},
|
|
|
|
| 1 |
+
"""Tool definitions for chat escalation routing agent evaluation."""
|
| 2 |
TOOLS = [
|
| 3 |
{"type": "function", "function": {"name": "http_request", "description": "Send an HTTP request. Slack at http://localhost:9110, Contacts at http://localhost:9103.", "parameters": {"type": "object", "properties": {"method": {"type": "string", "enum": ["GET", "POST"], "default": "POST"}, "url": {"type": "string"}, "body": {"type": "object"}}, "required": ["url"]}}},
|
| 4 |
{"type": "function", "function": {"name": "write_file", "description": "Write content to a file.", "parameters": {"type": "object", "properties": {"path": {"type": "string"}, "content": {"type": "string"}}, "required": ["path", "content"]}}},
|
workspace/03_Social_Interaction/task_6_chat_cross_dept_update_zh/exec/mock_services/slack/server.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Mock Slack-like team messaging service for
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
|
|
|
| 1 |
+
"""Mock Slack-like team messaging service for chat cross-department update agent evaluation (FastAPI on port 9110)."""
|
| 2 |
|
| 3 |
from __future__ import annotations
|
| 4 |
|
workspace/03_Social_Interaction/task_6_chat_cross_dept_update_zh/exec/utils.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Tool definitions for
|
| 2 |
TOOLS = [
|
| 3 |
{"type": "function", "function": {"name": "http_request", "description": "Send an HTTP request. Slack at http://localhost:9110, Contacts at http://localhost:9103.", "parameters": {"type": "object", "properties": {"method": {"type": "string", "enum": ["GET", "POST"], "default": "POST"}, "url": {"type": "string"}, "body": {"type": "object"}}, "required": ["url"]}}},
|
| 4 |
{"type": "function", "function": {"name": "write_file", "description": "Write content to a file.", "parameters": {"type": "object", "properties": {"path": {"type": "string"}, "content": {"type": "string"}}, "required": ["path", "content"]}}},
|
|
|
|
| 1 |
+
"""Tool definitions for chat cross-department update agent evaluation."""
|
| 2 |
TOOLS = [
|
| 3 |
{"type": "function", "function": {"name": "http_request", "description": "Send an HTTP request. Slack at http://localhost:9110, Contacts at http://localhost:9103.", "parameters": {"type": "object", "properties": {"method": {"type": "string", "enum": ["GET", "POST"], "default": "POST"}, "url": {"type": "string"}, "body": {"type": "object"}}, "required": ["url"]}}},
|
| 4 |
{"type": "function", "function": {"name": "write_file", "description": "Write content to a file.", "parameters": {"type": "object", "properties": {"path": {"type": "string"}, "content": {"type": "string"}}, "required": ["path", "content"]}}},
|