Skip to content

Commit 092091d

Browse files
authored
refactor: set default config path in RockAgent.install method (#346)
1 parent 89a3805 commit 092091d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rock/sdk/sandbox/agent/rock_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def __init__(self, sandbox: Sandbox):
186186
self.config: RockAgentConfig | None = None
187187
self.agent_session: str | None = None
188188

189-
async def install(self, config: str | RockAgentConfig) -> None:
189+
async def install(self, config: str | RockAgentConfig = "rock_agent_config.yaml") -> None:
190190
"""Install and initialize RockAgent.
191191
192192
Args:

0 commit comments

Comments
 (0)