Back to Agno

DeepSeek Cookbook

cookbook/90_models/deepseek/README.md

2.6.4781 B
Original Source

DeepSeek 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 DEEPSEEK_API_KEY

shell
export DEEPSEEK_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/deepseek/basic_stream.py
  • Streaming off
shell
python cookbook/92_models/deepseek/basic.py

5. Run Agent with Tools

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

6. Run Agent that returns structured output

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