forked from lightspeed-core/lightspeed-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlightspeed-stack.yaml
More file actions
33 lines (30 loc) · 1.08 KB
/
lightspeed-stack.yaml
File metadata and controls
33 lines (30 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Lightspeed Core Stack (LCS)
service:
host: 0.0.0.0
port: 8080
base_url: http://localhost:8080
auth_enabled: false
workers: 1
color_log: true
access_log: true
# llama_stack configuration
# When using 'make run', a container is ALWAYS launched at http://localhost:8321 (hardcoded in Makefile).
# This llama_stack section controls where lightspeed-core connects to llama-stack.
# To use a different port: override with 'make run LLAMA_STACK_PORT=<port>' and update the url below,
# or run llama-stack manually and don't use 'make run'.
llama_stack:
use_as_library_client: false
url: http://localhost:8321
# api_key: custom-key # Uncomment if your llama-stack requires authentication
user_data_collection:
feedback_enabled: true
feedback_storage: "/tmp/data/feedback"
transcripts_enabled: true
transcripts_storage: "/tmp/data/transcripts"
# Conversation cache for storing Q&A history
conversation_cache:
type: "sqlite"
sqlite:
db_path: "/tmp/data/conversation-cache.db" # Persistent across requests, can be deleted between test runs
authentication:
module: "noop"