@@ -34,6 +34,9 @@ The service includes comprehensive user data collection capabilities for various
3434 * [ Llama Stack version check] ( #llama-stack-version-check )
3535 * [ User data collection] ( #user-data-collection )
3636 * [ System prompt] ( #system-prompt )
37+ * [ System Prompt Path] ( #system-prompt-path )
38+ * [ System Prompt Literal] ( #system-prompt-literal )
39+ * [ Custom Profile] ( #custom-profile )
3740 * [ Control model/provider overrides via authorization] ( #control-modelprovider-overrides-via-authorization )
3841 * [ Safety Shields] ( #safety-shields )
3942 * [ Authentication] ( #authentication )
@@ -75,6 +78,10 @@ The service includes comprehensive user data collection capabilities for various
7578* [ Project structure] ( #project-structure )
7679 * [ Configuration classes] ( #configuration-classes )
7780 * [ REST API] ( #rest-api )
81+ * [ Sequence diagrams] ( #sequence-diagrams )
82+ * [ Query endpoint REST API handler] ( #query-endpoint-rest-api-handler )
83+ * [ Streaming query endpoint REST API handler] ( #streaming-query-endpoint-rest-api-handler )
84+ * [ Versioning] ( #versioning )
7885
7986<!-- vim-markdown-toc -->
8087
@@ -94,6 +101,31 @@ Lightspeed Core Stack is based on the FastAPI framework (Uvicorn). The service i
94101 - please note that currently Python 3.14 is not officially supported
95102 - all sources are made (backward) compatible with Python 3.12; it is checked on CI
96103
104+ * OpenAI API Key (Recommended for Getting Started)
105+
106+ Lightspeed Stack supports multiple LLM providers.
107+
108+ | Provider | Setup Documentation |
109+ | ----------------| -----------------------------------------------------------------------|
110+ | OpenAI | https://platform.openai.com |
111+ | Azure OpenAI | https://azure.microsoft.com/en-us/products/ai-services/openai-service |
112+ | RHOAI (vLLM) | See tests/e2e-prow/rhoai/configs/run.yaml |
113+ | RHEL AI (vLLM) | See tests/e2e/configs/run-rhelai.yaml |
114+
115+ See ` docs/providers.md ` for configuration details.
116+
117+ You will need an API key from one of these providers to run LightSpeed Stack.
118+
119+ For example, if you choose to use OpenAI:
120+
121+ 1 . ** Create an account** at [ platform.openai.com] ( https://platform.openai.com )
122+ 2 . ** Add payment information** (new accounts receive free trial credits)
123+ 3 . ** Generate an API key** from your dashboard at [ API Keys] ( https://platform.openai.com/api-keys )
124+ 4 . ** Export the key** in your environment:
125+ ``` bash
126+ export OPENAI_API_KEY=" sk-your-api-key-here"
127+ ```
128+
97129# Installation
98130
99131Installation steps depends on operation system. Please look at instructions for your system:
@@ -864,3 +896,22 @@ For complete integration setup, deployment options, and configuration details, s
864896## REST API
865897
866898
899+
900+ ## Sequence diagrams
901+
902+ ### Query endpoint REST API handler
903+
904+ 
905+
906+ ## Streaming query endpoint REST API handler
907+
908+ 
909+
910+ ## Versioning
911+
912+ We follow [Semantic Versioning](http://semver.org/spec/v1.0.0.html).
913+ The version X.Y.Z indicates:
914+
915+ * X is the major version (backward-incompatible),
916+ * Y is the minor version (backward-compatible), and
917+ * Z is the patch version (backward-compatible bug fix).
0 commit comments