Skip to content

Commit 8ed322f

Browse files
authored
🔨 chore: fix typo (#204)
1 parent 773b2bd commit 8ed322f

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

docs/datasets/task.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Therefore, each MCPMark task consists of three files
1111

1212
Here, `metadata.json` includes the meta information of the task, `description.md` describes the purpose and setting of the task, as well as the instruction to complete the task. `verify.py` checks whether the task is completed successfully.
1313

14-
For example, you can ask the model agent to create a file with specific name and write specific content to the file, which belongs to the cateogry of operating the file context. The structure looks like
14+
For example, you can ask the model agent to create a file with specific name and write specific content to the file, which belongs to the category of operating the file context. The structure looks like
1515

1616
```
1717
tasks
@@ -32,16 +32,16 @@ Note that all tasks are placed under `tasks/`. `filesystem` refers to the enviro
3232
- task_id: the id of the task.
3333
- task_name: full name of the task.
3434
- description: task description.
35-
- cateogry_id: the id of task category.
36-
- cateogry_name: the full name of task categeory.
35+
- category_id: the id of task category.
36+
- category_name: the full name of task categeory.
3737
- author: the author of the task.
3838
- difficulty: the task difficulty level.
3939
- created_at: the timestamp of task creation.
4040
- tags: a list of tags that describe the task.
4141
- mcp: a list of MCP services it belongs to.
4242
- metadata: other meta information.
4343

44-
Here `cateogry_name` describes the shared feature or the environment across different tasks (e.g. the github repository or notion page the task is built on). In this running example, `category_name` refers to `file_context`.
44+
Here `category_name` describes the shared feature or the environment across different tasks (e.g. the github repository or notion page the task is built on). In this running example, `category_name` refers to `file_context`.
4545

4646
`description.md` could include the following information
4747

src/errors.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,16 @@
1414
# Keep this list short and generic; aim to catch API/infrastructure issues only.
1515
RETRYABLE_PATTERNS = {
1616
"ratelimit", # e.g., RateLimitError, too many requests
17-
"connection", # connection refused/reset/error
17+
# "connection", # connection refused/reset/error
18+
"agent execution failed",
1819
"unavailable", # service unavailable
1920
# "execution timed out", # timeout
2021
"internal server error", # 500s
2122
"network error", # generic network issue
2223
"quota", # budget/quota exceeded
2324
# "llm provider not provided", # litellm error
2425
# pipeline infra signals
25-
"double quotes", # actually json error
2626
"account balance",
27-
"expecting value",
2827
"mcp network error",
2928
"state duplication error",
3029
}

0 commit comments

Comments
 (0)