Prompt example extracted from Google Gemini Cookbook.
With the Interactions API, access the response text like this:
```python
interaction = client.interactions.create(
model=MODEL_ID,
input="Your prompt here",
)
print(interaction.steps[-1].content[0].text)
```
Do **not** use `interaction.outputs` — it is deprecated in 2.0.0.