feat: gemini 3.0 pro preview added (as default gemini pro model)
refactor: code cleanup
This commit is contained in:
@@ -23,7 +23,7 @@ class TestThinkDeepTool:
|
||||
"""Test tool metadata"""
|
||||
assert tool.get_name() == "thinkdeep"
|
||||
assert "investigation and reasoning" in tool.get_description()
|
||||
assert tool.get_default_temperature() == 0.7
|
||||
assert tool.get_default_temperature() == 1.0
|
||||
|
||||
schema = tool.get_input_schema()
|
||||
# ThinkDeep is now a workflow tool with step-based fields
|
||||
@@ -124,7 +124,7 @@ class TestCodeReviewTool:
|
||||
"""Test tool metadata"""
|
||||
assert tool.get_name() == "codereview"
|
||||
assert "code review" in tool.get_description()
|
||||
assert tool.get_default_temperature() == 0.2
|
||||
assert tool.get_default_temperature() == 1.0
|
||||
|
||||
schema = tool.get_input_schema()
|
||||
assert "relevant_files" in schema["properties"]
|
||||
@@ -217,7 +217,7 @@ class TestAnalyzeTool:
|
||||
"""Test tool metadata"""
|
||||
assert tool.get_name() == "analyze"
|
||||
assert "code analysis" in tool.get_description()
|
||||
assert tool.get_default_temperature() == 0.2
|
||||
assert tool.get_default_temperature() == 1.0
|
||||
|
||||
schema = tool.get_input_schema()
|
||||
# New workflow tool requires step-based fields
|
||||
|
||||
Reference in New Issue
Block a user