Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d207594e3c |
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.2.5] - 2025-12-14
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **Dependencies**: Add missing `pydantic-settings` (not included in pydantic-ai-slim)
|
||||||
|
|
||||||
## [1.2.4] - 2025-12-14
|
## [1.2.4] - 2025-12-14
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -432,7 +432,7 @@ For LLM agent development guidelines and architectural decisions, see [AGENTS.md
|
|||||||
|
|
||||||
## Version
|
## Version
|
||||||
|
|
||||||
Current version: **1.2.4** - Watchtower integration
|
Current version: **1.2.5** - Dependency fix
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "tatlock"
|
name = "tatlock"
|
||||||
version = "1.2.4"
|
version = "1.2.5"
|
||||||
description = "OpenAI-compatible API with Ollama backend"
|
description = "OpenAI-compatible API with Ollama backend"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
dependencies = []
|
dependencies = []
|
||||||
|
|||||||
@@ -14,6 +14,11 @@ uvicorn[standard]>=0.38,<0.39
|
|||||||
# Latest: 2.12.4 (Nov 5, 2025) - No known CVEs
|
# Latest: 2.12.4 (Nov 5, 2025) - No known CVEs
|
||||||
pydantic>=2.11,<2.13
|
pydantic>=2.11,<2.13
|
||||||
|
|
||||||
|
# Pydantic settings for configuration management
|
||||||
|
# Required explicitly since pydantic-ai-slim doesn't include it
|
||||||
|
# Latest: 2.12.0 (Dec 2025) - No known CVEs
|
||||||
|
pydantic-settings>=2.12,<2.13
|
||||||
|
|
||||||
# AI/LLM integration
|
# AI/LLM integration
|
||||||
# PydanticAI: Agent framework for using Pydantic with LLMs
|
# PydanticAI: Agent framework for using Pydantic with LLMs
|
||||||
# Using slim version with only openai extra (Ollama uses OpenAI-compatible API)
|
# Using slim version with only openai extra (Ollama uses OpenAI-compatible API)
|
||||||
|
|||||||
Reference in New Issue
Block a user