-
Notifications
You must be signed in to change notification settings - Fork 94
LCORE-2080: Added E2E Steps for Agent Skills #1941
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name: Lightspeed Core Service (LCS) | ||
| service: | ||
| host: 0.0.0.0 | ||
| port: 8080 | ||
| auth_enabled: false | ||
| workers: 1 | ||
| color_log: true | ||
| access_log: true | ||
| llama_stack: | ||
| # Library mode - embeds llama-stack as library | ||
| use_as_library_client: true | ||
| library_client_config_path: run.yaml | ||
| user_data_collection: | ||
| feedback_enabled: true | ||
| feedback_storage: "/tmp/data/feedback" | ||
| transcripts_enabled: true | ||
| transcripts_storage: "/tmp/data/transcripts" | ||
| authentication: | ||
| module: "noop" | ||
| inference: | ||
| default_provider: openai | ||
| default_model: gpt-4o-mini | ||
| skills: | ||
| paths: | ||
| - skills |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| name: Lightspeed Core Service (LCS) | ||
| service: | ||
| host: 0.0.0.0 | ||
| port: 8080 | ||
| auth_enabled: false | ||
| workers: 1 | ||
| color_log: true | ||
| access_log: true | ||
| llama_stack: | ||
| # Library mode - embeds llama-stack as library | ||
| use_as_library_client: true | ||
| library_client_config_path: run.yaml | ||
| user_data_collection: | ||
| feedback_enabled: true | ||
| feedback_storage: "/tmp/data/feedback" | ||
| transcripts_enabled: true | ||
| transcripts_storage: "/tmp/data/transcripts" | ||
| authentication: | ||
| module: "noop" | ||
| inference: | ||
| default_provider: openai | ||
| default_model: gpt-4o-mini | ||
| skills: | ||
| paths: | ||
| - skills/echo |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| name: Lightspeed Core Service (LCS) | ||
| service: | ||
| host: 0.0.0.0 | ||
| port: 8080 | ||
| auth_enabled: false | ||
| workers: 1 | ||
| color_log: true | ||
| access_log: true | ||
| llama_stack: | ||
| # Server mode - connects to separate llama-stack service | ||
| use_as_library_client: false | ||
| url: http://${env.E2E_LLAMA_HOSTNAME}:8321 | ||
| api_key: xyzzy | ||
| user_data_collection: | ||
| feedback_enabled: true | ||
| feedback_storage: "/tmp/data/feedback" | ||
| transcripts_enabled: true | ||
| transcripts_storage: "/tmp/data/transcripts" | ||
| authentication: | ||
| module: "noop" | ||
| inference: | ||
| default_provider: openai | ||
| default_model: gpt-4o-mini | ||
| skills: | ||
| paths: | ||
| - skills | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,26 @@ | ||||||||||||||
| name: Lightspeed Core Service (LCS) | ||||||||||||||
| service: | ||||||||||||||
| host: 0.0.0.0 | ||||||||||||||
| port: 8080 | ||||||||||||||
| auth_enabled: false | ||||||||||||||
| workers: 1 | ||||||||||||||
| color_log: true | ||||||||||||||
| access_log: true | ||||||||||||||
| llama_stack: | ||||||||||||||
| # Server mode - connects to separate llama-stack service | ||||||||||||||
| use_as_library_client: false | ||||||||||||||
| url: http://${env.E2E_LLAMA_HOSTNAME}:8321 | ||||||||||||||
| api_key: xyzzy | ||||||||||||||
| user_data_collection: | ||||||||||||||
| feedback_enabled: true | ||||||||||||||
| feedback_storage: "/tmp/data/feedback" | ||||||||||||||
| transcripts_enabled: true | ||||||||||||||
| transcripts_storage: "/tmp/data/transcripts" | ||||||||||||||
| authentication: | ||||||||||||||
| module: "noop" | ||||||||||||||
| inference: | ||||||||||||||
| default_provider: openai | ||||||||||||||
| default_model: gpt-4o-mini | ||||||||||||||
| skills: | ||||||||||||||
| paths: | ||||||||||||||
| - skills/echo | ||||||||||||||
|
Comment on lines
+24
to
+26
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🩺 Stability & Availability | 🔵 Trivial | ⚡ Quick win Pin the skill path to the mounted absolute location.
Proposed change skills:
paths:
- - skills/echo
+ - /app-root/skills/echo📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🔵 Trivial | ⚡ Quick win
Use absolute skills path to avoid CWD-dependent startup failures.
skillsis relative; if the service working directory changes, skills discovery can fail at startup. Use/app-root/skillsto match the compose mount explicitly.Proposed change
📝 Committable suggestion
🤖 Prompt for AI Agents