forked from Rockachopa/Timmy-time-dashboard
Add pre-commit hook enforcing 30s test suite time limit (#132)
This commit is contained in:
committed by
GitHub
parent
aff3edb06a
commit
2b97da9e9c
@@ -23,7 +23,7 @@ _app = _get_app()
|
||||
if _app is not None:
|
||||
|
||||
@_app.task(bind=True, name="infrastructure.celery.tasks.run_agent_chat")
|
||||
def run_agent_chat(self, prompt, agent_id="timmy", session_id="celery"):
|
||||
def run_agent_chat(self, prompt, agent_id="default", session_id="celery"):
|
||||
"""Execute a chat prompt against Timmy's agent session.
|
||||
|
||||
Args:
|
||||
@@ -57,7 +57,7 @@ if _app is not None:
|
||||
}
|
||||
|
||||
@_app.task(bind=True, name="infrastructure.celery.tasks.execute_tool")
|
||||
def execute_tool(self, tool_name, kwargs=None, agent_id="timmy"):
|
||||
def execute_tool(self, tool_name, kwargs=None, agent_id="default"):
|
||||
"""Run a specific tool function asynchronously.
|
||||
|
||||
Args:
|
||||
|
||||
Reference in New Issue
Block a user