google / google/adk-python

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

Ouverte
#6,982 1 commentaire 0 réactions 1 personne assignée Réclamée par @sanketpatil06 Voir sur GitHub
models
Langage dominant
Python
Étoiles
21.5k
Forks
4k
Merge moyen
1 j 22 h
PR mergées (30 j)
31

Description

## 🔴 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%)

Guide de contribution

Ouvrir le guide de contribution

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.