Skip to content
Open
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
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ dependencies = [
[project.optional-dependencies]
# LLM providers (user chooses which they need)
anthropic = ["anthropic>=0.25.0,<1.0.0"]
openai = ["openai>=1.12.0,<2.0.0"]
openai = ["openai>=1.12.0,<3.0.0"]
# Note: google-generativeai is deprecated but still works; google-genai requires
# tenacity>=9.1.2 (now compatible with langchain>=0.3.0). Ready to migrate.
google = ["google-generativeai>=0.3.0,<1.0.0"]
llm = [
"anthropic>=0.25.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"openai>=1.12.0,<3.0.0",
"google-generativeai>=0.3.0,<1.0.0",
]

Expand Down Expand Up @@ -94,7 +94,7 @@ crewai = [
healthcare = [
# Everything in enterprise
"anthropic>=0.25.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"openai>=1.12.0,<3.0.0",
"google-generativeai>=0.3.0,<1.0.0",
"memdocs>=1.0.0",
"langchain>=1.0.0,<2.0.0",
Expand Down Expand Up @@ -168,7 +168,7 @@ dev = [
developer = [
# LLM providers
"anthropic>=0.25.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"openai>=1.12.0,<3.0.0",
"google-generativeai>=0.3.0,<1.0.0",
# MemDocs integration
"memdocs>=1.0.0",
Expand All @@ -188,7 +188,7 @@ developer = [
enterprise = [
# Everything in developer
"anthropic>=0.25.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"openai>=1.12.0,<3.0.0",
"google-generativeai>=0.3.0,<1.0.0",
"memdocs>=1.0.0",
"langchain>=1.0.0,<2.0.0",
Expand All @@ -211,7 +211,7 @@ enterprise = [
full = [
# LLM providers
"anthropic>=0.25.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"openai>=1.12.0,<3.0.0",
"google-generativeai>=0.3.0,<1.0.0",
# MemDocs integration
"memdocs>=1.0.0",
Expand All @@ -231,7 +231,7 @@ full = [
all = [
# LLM providers
"anthropic>=0.25.0,<1.0.0",
"openai>=1.12.0,<2.0.0",
"openai>=1.12.0,<3.0.0",
"google-generativeai>=0.3.0,<1.0.0",
# MemDocs integration
"memdocs>=1.0.0",
Expand Down
Loading