Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: strands-agents/sdk-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: veeragoni/sdk-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Jul 12, 2025

  1. # Add DeepSeek model provider support

    ## Features
    - **New DeepSeek Model Provider**: Full implementation with streaming and structured output support
    - **OpenAI-compatible API**: Uses OpenAI client for seamless integration with DeepSeek endpoints
    - **Reasoning Model Support**: Handles DeepSeek-specific features like reasoning content
    - **Beta Features**: Support for beta endpoint and advanced DeepSeek capabilities
    
    ## Changes
    - `src/strands/models/deepseek.py`: New DeepSeek model provider implementation
    - `src/strands/models/__init__.py`: Export DeepSeekModel class
    - `tests_integ/models/test_model_deepseek.py`: Comprehensive integration tests (7 test cases)
    - `tests_integ/models/providers.py`: Add DeepSeek to provider configuration
    - `README.md`: Update documentation with DeepSeek examples and provider list
    
    ## Usage
    ```python
    from strands.models.deepseek import DeepSeekModel
    model = DeepSeekModel(api_key="your-key", model_id="deepseek-chat")
    
    Testing
    ✅ All 7 integration tests passing
    
    ✅ Basic conversation, structured output, streaming, tool usage
    
    ✅ Configuration updates and async operations
    Suresh Veeragoni committed Jul 12, 2025
    Configuration menu
    Copy the full SHA
    cd097ab View commit details
    Browse the repository at this point in the history
  2. updates after hatch run prepare

    Suresh Veeragoni committed Jul 12, 2025
    Configuration menu
    Copy the full SHA
    8e4cd40 View commit details
    Browse the repository at this point in the history
  3. fixes to tool usage

    Suresh Veeragoni committed Jul 12, 2025
    Configuration menu
    Copy the full SHA
    a824b9d View commit details
    Browse the repository at this point in the history
Loading