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
2 changes: 1 addition & 1 deletion s01_agent_loop/README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ response = client.messages.create(
)
```

**Step 3**: Append the model's response and check whether it called a tool. No tool call → done.
**Step 3**: Append the model's response and check whether it requested a tool call. No request → done.

```python
messages.append({"role": "assistant", "content": response.content})
Expand Down
2 changes: 1 addition & 1 deletion s01_agent_loop/README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ response = client.messages.create(
)
```

**ステップ 3**:モデルの応答を追加し、ツールを呼び出したか確認する。呼び出しなし → 終了。
**ステップ 3**:モデルの応答を追加し、ツール呼び出しを要求したか確認する。要求なし → 終了。

```python
messages.append({"role": "assistant", "content": response.content})
Expand Down
2 changes: 1 addition & 1 deletion s01_agent_loop/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ response = client.messages.create(
)
```

**第 3 步**:追加模型回答,检查它是否调了工具。没调 → 结束。
**第 3 步**:追加模型回答,检查模型是否请求调用工具。没请求 → 结束。

```python
messages.append({"role": "assistant", "content": response.content})
Expand Down