Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,13 @@

# Thinking level to a float multiplier % of max tokens
THINKING_LEVEL_TO_EFFORT: dict[ThinkingLevel, ReasoningEffort] = {
"none": "minimal",
"default": "medium",
"none": "none",
"minimal": "minimal",
"low": "low",
"medium": "medium",
"max": "high",
"high": "high",
"max": "xhigh",
}


Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Changelog = "https://github.com/Mirascope/mirascope/releases"
anthropic = ["anthropic>=0.75.0,<1.0"]
api = ["pydantic-settings>=2.12.0"]
google = ["google-genai>=1.48.0,<2", "pillow>=10.4.0,<11", "proto-plus>=1.24.0"]
openai = ["openai>=2.7.1,<3"]
openai = ["openai>=2.14.0,<3"]
mcp = ["mcp>=1.25.0,<2"]
ops = [
"opentelemetry-sdk>=1.38.0,<2",
Expand Down
8 changes: 4 additions & 4 deletions python/tests/ops/_internal/test_closure.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ def aliased_module_import_fn(query: str) -> str:
"""
)
assert closure.dependencies == snapshot(
{"openai": {"version": "2.7.1", "extras": None}}
{"openai": {"version": "2.14.0", "extras": None}}
)


Expand All @@ -506,7 +506,7 @@ def aliased_import_fn(query: str) -> str:
"""
)
assert closure.dependencies == snapshot(
{"openai": {"version": "2.7.1", "extras": None}}
{"openai": {"version": "2.14.0", "extras": None}}
)


Expand Down Expand Up @@ -640,7 +640,7 @@ def annotated_assignment_fn() -> str:
"""
)
assert closure.dependencies == snapshot(
{"openai": {"version": "2.7.1", "extras": None}}
{"openai": {"version": "2.14.0", "extras": None}}
)


Expand All @@ -664,7 +664,7 @@ def internal_imports_fn() -> str:
"""
)
assert closure.dependencies == snapshot(
{"openai": {"version": "2.7.1", "extras": None}}
{"openai": {"version": "2.14.0", "extras": None}}
)


Expand Down
8 changes: 4 additions & 4 deletions python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.