chore: ruff lint

This commit is contained in:
Richard Tang
2026-03-15 20:25:21 -07:00
parent ac8579900f
commit 3adf268c29
2 changed files with 12 additions and 7 deletions
+10 -7
View File
@@ -93,12 +93,16 @@ _QUEEN_PLANNING_TOOLS = [
] + _QUEEN_MEMORY_TOOLS
# Building phase: full coding + agent construction tools.
_QUEEN_BUILDING_TOOLS = _SHARED_TOOLS + [
"load_built_agent",
"list_credentials",
"replan_agent",
"save_agent_draft", # Re-draft during building → auto-dissolves + updates flowchart
] + _QUEEN_MEMORY_TOOLS
_QUEEN_BUILDING_TOOLS = (
_SHARED_TOOLS
+ [
"load_built_agent",
"list_credentials",
"replan_agent",
"save_agent_draft", # Re-draft during building → auto-dissolves + updates flowchart
]
+ _QUEEN_MEMORY_TOOLS
)
# Staging phase: agent loaded but not yet running — inspect, configure, launch.
_QUEEN_STAGING_TOOLS = [
@@ -143,7 +147,6 @@ _QUEEN_RUNNING_TOOLS = [
"set_trigger",
"remove_trigger",
"list_triggers",
"write_to_diary", # Episodic memory — available in all phases
] + _QUEEN_MEMORY_TOOLS
Generated
+2
View File
@@ -836,6 +836,7 @@ version = "0.7.1"
source = { editable = "core" }
dependencies = [
{ name = "anthropic" },
{ name = "croniter" },
{ name = "fastmcp" },
{ name = "httpx" },
{ name = "litellm" },
@@ -871,6 +872,7 @@ requires-dist = [
{ name = "aiohttp", marker = "extra == 'server'", specifier = ">=3.9.0" },
{ name = "aiohttp", marker = "extra == 'webhook'", specifier = ">=3.9.0" },
{ name = "anthropic", specifier = ">=0.40.0" },
{ name = "croniter", specifier = ">=1.4.0" },
{ name = "fastmcp", specifier = ">=2.0.0" },
{ name = "httpx", specifier = ">=0.27.0" },
{ name = "litellm", specifier = ">=1.81.0" },