Skip to content
Draft
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 @@ -41,7 +41,7 @@ litellm = ["litellm>=1.83.0"]
any-llm = ["any-llm-sdk>=1.11.0, <2; python_version >= '3.11'"]
realtime = ["websockets>=15.0, <17"]
sqlalchemy = ["SQLAlchemy>=2.0", "asyncpg>=0.29.0"]
encrypt = ["cryptography>=45.0, <46"]
encrypt = ["cryptography>=45.0, <46", "pynacl>=1.5, <1.6"]
redis = ["redis>=7"]
dapr = ["dapr>=1.16.0", "grpcio>=1.60.0"]
mongodb = ["pymongo>=4.14"]
Expand Down Expand Up @@ -86,6 +86,7 @@ dev = [
"fastapi >= 0.110.0, <1",
"aiosqlite>=0.21.0",
"cryptography>=45.0, <46",
"pynacl>=1.5, <1.6",
"fakeredis>=2.31.3",
"dapr>=1.14.0",
"grpcio>=1.60.0",
Expand Down
2 changes: 2 additions & 0 deletions src/agents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
from .models.interface import Model, ModelProvider, ModelTracing
from .models.multi_provider import MultiProvider
from .models.openai_agent_registration import OpenAIAgentRegistrationConfig
from .models.openai_agent_runtime_auth import OpenAIAgentRuntimeAuthConfig
from .models.openai_chatcompletions import OpenAIChatCompletionsModel
from .models.openai_provider import OpenAIProvider
from .models.openai_responses import (
Expand Down Expand Up @@ -352,6 +353,7 @@ def enable_verbose_stdout_logging():
"MultiProvider",
"OpenAIProvider",
"OpenAIAgentRegistrationConfig",
"OpenAIAgentRuntimeAuthConfig",
"OpenAIResponsesModel",
"OpenAIResponsesWSModel",
"AgentOutputSchema",
Expand Down
Loading
Loading