Back to Agno

Together Cookbook

cookbook/90_models/together/README.md

2.6.41.1 KB
Original Source

Together Cookbook

Note: Fork and clone this repository if needed

1. Create and activate a virtual environment

shell
python3 -m venv ~/.venvs/aienv
source ~/.venvs/aienv/bin/activate

2. Export your TOGETHER_API_KEY

shell
export TOGETHER_API_KEY=***

3. Install libraries

shell
uv pip install -U together openai ddgs duckdb yfinance agno

4. Run basic Agent

  • Streaming on
shell
python cookbook/92_models/together/basic_stream.py
  • Streaming off
shell
python cookbook/92_models/together/basic.py

5. Run Agent with Tools

  • DuckDuckGo Search
shell
python cookbook/92_models/together/tool_use.py

6. Run Agent that returns structured output

shell
python cookbook/92_models/together/structured_output.py

7. Run Agent with Image URL Input

shell
python cookbook/92_models/together/image_agent.py

8. Run Agent with Image Input

shell
python cookbook/92_models/together/image_agent_bytes.py

9. Run Agent with Image Input and Memory

shell
python cookbook/92_models/together/image_agent_with_memory.py