a2aproject / a2aproject/a2a-samples

`events` is a generator and cannot be indexed with `[-1]`

未关闭
#38 1 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
主要语言
Jupyter Notebook
星标
1.8k
派生
751
PR 合并指标
30 天内没有已合并 PR

描述

This issue occurs in the **Agent example using ADK**, specifically within the `invoke` function.

Here is the problematic snippet:

```python
events = self._runner.run(
user_id=self._user_id, session_id=session.id, new_message=content
)
if not events or not events[-1].content or not events[-1].content.parts:
return ""
return "\n".join([p.text for p in events[-1].content.parts if p.text])
```

The variable `events` is a **generator**, but the code attempts to access it using `events[-1]`. This is not allowed, as generators do not support indexing or slicing.

Attempting this will raise a `TypeError`:

```
TypeError: 'generator' object is not subscriptable
```

### Workaround

Convert the generator to a list before performing any indexing:

```python
events = list(self._runner.run(
user_id=self._user_id, session_id=session.id, new_message=content
))
if not events or not events[-1].content or not events[-1].content.parts:
return ""
return "\n".join([p.text for p in events[-1].content.parts if p.text])
```

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。