code-puppy 0.0.25__tar.gz → 0.0.27__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: code-puppy
3
- Version: 0.0.25
3
+ Version: 0.0.27
4
4
  Summary: Code generation agent
5
5
  Author: Michael Pfaffenberger
6
6
  License: MIT
@@ -5,6 +5,7 @@ import time
5
5
  from typing import Dict, Any
6
6
  from pydantic_ai.models.gemini import GeminiModel
7
7
  from pydantic_ai.models.openai import OpenAIModel
8
+ from pydantic_ai.models.anthropic import AnthropicModel
8
9
  from pydantic_ai.providers.google_gla import GoogleGLAProvider
9
10
  from pydantic_ai.providers.openai import OpenAIProvider
10
11
  from pydantic_ai.providers.anthropic import AnthropicProvider
@@ -192,7 +193,7 @@ class ModelFactory:
192
193
  base_url=url,
193
194
  http_client=client,
194
195
  )
195
- provider = AnthropicProvider(anthropic_client=anthropic_client)
196
+ provider = AnthropicProvider(api_key=api_key, anthropic_client=anthropic_client)
196
197
 
197
198
  return AnthropicModel(model_name=model_config["name"], provider=provider)
198
199
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "code-puppy"
7
- version = "0.0.25"
7
+ version = "0.0.27"
8
8
  description = "Code generation agent"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes
File without changes