Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ jobs:
- agents
- datasetio
- eval
- files
- inference
- post_training
- safety
Expand All @@ -125,6 +126,14 @@ jobs:
namespace: null
type: sqlite
providers:
files:
- config:
storage_dir: /tmp/llama-stack-files
metadata_store:
type: sqlite
db_path: .llama/distributions/ollama/files_metadata.db
provider_id: localfs
provider_type: inline::localfs
agents:
- config:
persistence_store:
Expand Down Expand Up @@ -199,6 +208,9 @@ jobs:
- provider_id: model-context-protocol
provider_type: remote::model-context-protocol
config: {}
- provider_id: rag-runtime
provider_type: inline::rag-runtime
config: {}
vector_io:
- config:
kvstore:
Expand All @@ -224,6 +236,10 @@ jobs:
provider_id: openai
model_type: llm
provider_model_id: gpt-4o-mini

tool_groups:
- toolgroup_id: builtin::rag
provider_id: rag-runtime

- name: list files
run: |
Expand Down
9 changes: 9 additions & 0 deletions run.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ apis:
- agents
- datasetio
- eval
- files
- inference
- post_training
- safety
Expand All @@ -25,6 +26,14 @@ metadata_store:
namespace: null
type: sqlite
providers:
files:
- config:
storage_dir: /tmp/llama-stack-files
metadata_store:
type: sqlite
db_path: .llama/distributions/ollama/files_metadata.db
provider_id: localfs
provider_type: inline::localfs
agents:
- config:
persistence_store:
Expand Down
Loading