Back to Agno

Fireworks AI Cookbook

cookbook/90_models/fireworks/README.md

2.6.4792 B
Original Source

Fireworks AI 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 FIREWORKS_API_KEY

shell
export FIREWORKS_API_KEY=***

3. Install libraries

shell
uv pip install -U openai ddgs duckdb yfinance agno

4. Run basic Agent

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

5. Run Agent with Tools

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

6. Run Agent that returns structured output

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