mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-27 18:50:41 +00:00
feat: allow specifying specific tool within toolgroup (#1239)
Summary: E.g. `builtin::rag::knowledge_search` Test Plan: ``` LLAMA_STACK_CONFIG=fireworks pytest -s -v tests/client-sdk/agents/ --safety-shield meta-llama/Llama-Guard-3-8B ```
This commit is contained in:
parent
657efc67bc
commit
c8a20b8ed0
7 changed files with 80 additions and 64 deletions
|
@ -803,7 +803,7 @@
|
|||
}
|
||||
],
|
||||
"source": [
|
||||
"model_id = \"meta-llama/Llama-3.1-70B-Instruct\"\n",
|
||||
"model_id = \"meta-llama/Llama-3.3-70B-Instruct\"\n",
|
||||
"\n",
|
||||
"model_id\n"
|
||||
]
|
||||
|
@ -1688,7 +1688,7 @@
|
|||
" enable_session_persistence=False,\n",
|
||||
" toolgroups = [\n",
|
||||
" {\n",
|
||||
" \"name\": \"builtin::rag\",\n",
|
||||
" \"name\": \"builtin::rag/knowledge_search\",\n",
|
||||
" \"args\" : {\n",
|
||||
" \"vector_db_ids\": [vector_db_id],\n",
|
||||
" }\n",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue