google / google/adk-python

AnthropicLlm raises NotImplementedError on empty text parts that ADK itself emits (e.g. code execution with no output)

オープン
#6,982 コメント 1 件 リアクション 0 件 担当者 1 名 @sanketpatil06 が担当を希望しています GitHub で見る
models
主要言語
Python
スター
21.5k
フォーク
4k
平均マージ
1日 22時間
マージ済み PR(30日)
31

説明

## 🔴 Required Information

**Describe the Bug:**
`AnthropicLlm` converts each `Part` in the conversation into an Anthropic content block. A part that carries only an empty text string (`Part(text='')`) matches none of the branches in `_part_to_message_block` (because `if part.text:` is false for `''`) and falls through to the final `raise NotImplementedError("Not supported yet: ...")`, which fails the whole model call with a misleading error.

ADK produces such parts itself: `code_executors/code_execution_utils.py` writes `Part(text='')` into the content when a code execution returns no output. The LiteLLM path (`lite_llm.py`) simply skips empty text parts, so the same conversation works via `LiteLlm` but fails via the native `AnthropicLlm` adapter.

**Steps to Reproduce:**
1. `pip install google-adk anthropic`
2. Run the snippet under *Minimal Reproduction Code*

**Expected Behavior:**
Empty text parts are skipped (Anthropic rejects empty text blocks anyway), consistent with how the adapter already handles unsupported media parts in assistant turns (warn and skip) and with the LiteLLM path.

**Observed Behavior:**
```text
File ".../google/adk/models/anthropic_llm.py", line 578, in _content_to_message_param
message_block.append(_part_to_message_block(part, sanitizer))
File ".../google/adk/models/anthropic_llm.py", line 557, in _part_to_message_block
raise NotImplementedError(f"Not supported yet: {part}")
NotImplementedError: Not supported yet: media_resolution=None code_execution_result=None executable_code=None file_data=None function_call=None function_response=None inline_data=None text='' thought=None thought_signature=None ...
```

**Environment Details:**

- ADK Library Version (pip show google-adk): 2.8.0
- Desktop OS: macOS (arm64)
- Python Version (python -V): 3.14.7

**Model Information:**

- Are you using LiteLLM: No (native `AnthropicLlm`; the LiteLLM path is not affected)
- Which model is being used: N/A (reproduces in message conversion, no API call needed)

---

## 🟡 Optional Information

**Regression:**
Unknown.

**Logs:**
See *Observed Behavior* above.

**Screenshots / Video:**
N/A

**Additional Context:**
PR incoming shortly (skip parts that carry nothing but empty text in `_content_to_message_param`, plus regression tests). Reported with AI assistance; reproduced and reviewed by me.

**Minimal Reproduction Code:**
```python
from google.genai import types
from google.adk.models.anthropic_llm import content_to_message_param

content = types.Content(
role="user",
parts=[types.Part(text="run it"), types.Part(text="")],
)
print(content_to_message_param(content))
```

**How often has this issue occurred?:**

- Always (100%)

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。