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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ Lightspeed Core Stack (LCS) is an AI-powered assistant that provides answers to
* [Configuration](#configuration)
* [Integration with Llama Stack](#integration-with-llama-stack)
* [Llama Stack as separate server](#llama-stack-as-separate-server)
* [Llama Stack project and configuration](#llama-stack-project-and-configuration)
* [Check connection to Llama Stack](#check-connection-to-llama-stack)
* [Llama Stack as client library](#llama-stack-as-client-library)
* [System prompt](#system-prompt)
* [Safety Shields](#safety-shields)
* [Usage](#usage)
* [Make targets](#make-targets)
* [Running Linux container image](#running-linux-container-image)
Expand Down Expand Up @@ -457,3 +460,12 @@ uv run src/lightspeed_stack.py --data-collector
# Using Make target
make run-data-collector
```



# Project structure

## Configuration classes

![Configuration classes](docs/config.png)

Binary file modified docs/config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/config.puml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class "DataCollectorConfiguration" as src.models.config.DataCollectorConfigurati
ingress_server_url : Optional[str]
check_data_collector_configuration() -> Self
}
class "LLamaStackConfiguration" as src.models.config.LLamaStackConfiguration {
class "LlamaStackConfiguration" as src.models.config.LlamaStackConfiguration {
api_key : Optional[str]
library_client_config_path : Optional[str]
url : Optional[str]
Expand Down Expand Up @@ -70,7 +70,7 @@ class "UserDataCollection" as src.models.config.UserDataCollection {
check_storage_location_is_set_when_needed() -> Self
}
src.models.config.DataCollectorConfiguration --* src.models.config.UserDataCollection : data_collector
src.models.config.LLamaStackConfiguration --* src.models.config.Configuration : llama_stack
src.models.config.LlamaStackConfiguration --* src.models.config.Configuration : llama_stack
src.models.config.ServiceConfiguration --* src.models.config.Configuration : service
src.models.config.TLSConfiguration --* src.models.config.ServiceConfiguration : tls_config
src.models.config.UserDataCollection --* src.models.config.Configuration : user_data_collection
Expand Down