File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,11 +7,12 @@ service:
77 color_log : true
88 access_log : true
99llama_stack :
10- # Uses llama-stack as a library
10+ # Uses a remote llama-stack service
11+ # The instance would have already been started with a llama-stack-run.yaml file
1112 use_as_library_client : false
12- # library_client_config_path: run.yaml
13- # Remote service configuration (disabled)
14- # use_as_library_client: false
13+ # Alternative for "as library use"
14+ # use_as_library_client: true
15+ # library_client_config_path: <path-to-llama-stack-run.yaml-file>
1516 url : http://llama-stack:8321
1617 api_key : xyzzy
1718user_data_collection :
@@ -20,5 +21,11 @@ user_data_collection:
2021 transcripts_enabled : true
2122 transcripts_storage : " /tmp/data/transcripts"
2223
24+ # Conversation cache for storing Q&A history
25+ conversation_cache :
26+ type : " sqlite"
27+ sqlite :
28+ db_path : " /tmp/data/conversation-cache.db" # Persistent across requests, can be deleted between test runs
29+
2330authentication :
2431 module : " noop"
You can’t perform that action at this time.
0 commit comments