Rename builtin::memory -> builtin::rag

This commit is contained in:
Ashwin Bharambe 2025-01-22 20:22:51 -08:00
parent 597869a2aa
commit f3d8864c36
66 changed files with 184 additions and 184 deletions

View file

@ -152,7 +152,7 @@ class MockToolGroupsAPI:
toolgroup_id=MEMORY_TOOLGROUP,
tool_host=ToolHost.client,
description="Mock tool",
provider_id="builtin::memory",
provider_id="builtin::rag",
parameters=[],
)
]
@ -260,7 +260,7 @@ async def get_chat_agent(get_agents_impl):
return await impl.get_agent(response.agent_id)
MEMORY_TOOLGROUP = "builtin::memory"
MEMORY_TOOLGROUP = "builtin::rag"
CODE_INTERPRETER_TOOLGROUP = "builtin::code_interpreter"