Skip to content

Commit 98681d7

Browse files
authored
uprev to v0.0.12 (#185)
1 parent 864b926 commit 98681d7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585

8686
- uses: pydantic/ollama-action@main
8787
with:
88-
model: qwen:0.5b
88+
model: qwen2:0.5b
8989

9090
- run: >
9191
uv run

pydantic_ai_examples/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pydantic-ai-examples"
7-
version = "0.0.11"
7+
version = "0.0.12"
88
description = "Examples of how to use PydanticAI and what it can do."
99
authors = [
1010
{ name = "Samuel Colvin", email = "[email protected]" },
@@ -34,7 +34,7 @@ classifiers = [
3434
]
3535
requires-python = ">=3.9"
3636
dependencies = [
37-
"pydantic-ai-slim[openai,vertexai,groq]==0.0.11",
37+
"pydantic-ai-slim[openai,vertexai,groq]==0.0.12",
3838
"asyncpg>=0.30.0",
3939
"fastapi>=0.115.4",
4040
"logfire[asyncpg,fastapi]>=2.3",

pydantic_ai_slim/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pydantic-ai-slim"
7-
version = "0.0.11"
7+
version = "0.0.12"
88
description = "Agent Framework / shim to use Pydantic with LLMs, slim package"
99
authors = [
1010
{ name = "Samuel Colvin", email = "[email protected]" },

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pydantic-ai"
7-
version = "0.0.11"
7+
version = "0.0.12"
88
description = "Agent Framework / shim to use Pydantic with LLMs"
99
authors = [
1010
{ name = "Samuel Colvin", email = "[email protected]" },
@@ -36,7 +36,7 @@ classifiers = [
3636
"Framework :: Pytest",
3737
]
3838
requires-python = ">=3.9"
39-
dependencies = ["pydantic-ai-slim[openai,vertexai,groq]==0.0.11"]
39+
dependencies = ["pydantic-ai-slim[openai,vertexai,groq]==0.0.12"]
4040

4141
[project.urls]
4242
Homepage = "https://ai.pydantic.dev"
@@ -45,7 +45,7 @@ Documentation = "https://ai.pydantic.dev"
4545
Changelog = "https://github.com/pydantic/pydantic-ai/releases"
4646

4747
[project.optional-dependencies]
48-
examples = ["pydantic-ai-examples==0.0.11"]
48+
examples = ["pydantic-ai-examples==0.0.12"]
4949
logfire = ["logfire>=2.3"]
5050

5151
[tool.uv.sources]

tests/test_live.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def groq(http_client: httpx.AsyncClient, _tmp_path: Path) -> Model:
5151
def ollama(http_client: httpx.AsyncClient, _tmp_path: Path) -> Model:
5252
from pydantic_ai.models.ollama import OllamaModel
5353

54-
return OllamaModel('qwen:0.5b', http_client=http_client)
54+
return OllamaModel('qwen2:0.5b', http_client=http_client)
5555

5656

5757
params = [

uv.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)