mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-03 09:21:45 +00:00
remove breakpoints
This commit is contained in:
parent
17abffb505
commit
db0b2a60c1
2 changed files with 1 additions and 3 deletions
|
@ -758,7 +758,6 @@ class ChatAgent(ShieldRunnerMixin):
|
|||
input_messages: List[Message],
|
||||
tool_defs: Dict[str, ToolDefinition],
|
||||
) -> None:
|
||||
breakpoint()
|
||||
memory_tool = tool_defs.get("memory", None)
|
||||
code_interpreter_tool = tool_defs.get(BuiltinTool.code_interpreter, None)
|
||||
if documents:
|
||||
|
|
|
@ -211,7 +211,7 @@ def test_code_execution(llama_stack_client):
|
|||
tools=[
|
||||
"code_interpreter",
|
||||
],
|
||||
tool_choice="required",
|
||||
tool_choice="auto",
|
||||
input_shields=[],
|
||||
output_shields=[],
|
||||
enable_session_persistence=False,
|
||||
|
@ -242,7 +242,6 @@ def test_code_execution(llama_stack_client):
|
|||
)
|
||||
logs = [str(log) for log in EventLogger().log(response) if log is not None]
|
||||
logs_str = "".join(logs)
|
||||
breakpoint()
|
||||
print(logs_str)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue