Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dependencies = [
# Object Storage
"minio>=7.0.0",
# AI/ML Services
"anthropic>=0.66.0",
"anthropic>=0.76.0",
# Utilities
"click>=0.8.0",
"Jinja2>=3.0.0",
Expand All @@ -55,6 +55,7 @@ dev = [
"pytest-asyncio>=1.0.0",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.5.0",
"pytest-subtests>=0.12.0",
"hypothesis>=6.0.0",
"factory-boy>=3.2.0",
# Type checking
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --extra=dev --output-file=requirements-dev.txt pyproject.toml
Expand All @@ -10,7 +10,7 @@ annotated-doc==0.0.4
# via fastapi
annotated-types==0.7.0
# via pydantic
anthropic==0.75.0
anthropic==0.76.0
# via julee (pyproject.toml)
anyio==4.12.0
# via
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile --output-file=requirements.txt pyproject.toml
Expand All @@ -8,7 +8,7 @@ annotated-doc==0.0.4
# via fastapi
annotated-types==0.7.0
# via pydantic
anthropic==0.75.0
anthropic==0.76.0
# via julee (pyproject.toml)
anyio==4.12.0
# via
Expand Down
2 changes: 2 additions & 0 deletions src/julee/services/knowledge_service/anthropic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"""

from .knowledge_service import AnthropicKnowledgeService
from .schema_preprocessor import AnthropicSchemaPreprocessor

__all__ = [
"AnthropicKnowledgeService",
"AnthropicSchemaPreprocessor",
]
Loading
Loading