Skip to content

Commit 4f61881

Browse files
authored
Merge pull request lightspeed-core#1652 from tisnik/lcore-2086-regenerated-devel-documentation
LCORE-2086: Regenerated devel documentation
2 parents 3c3c5d9 + 6ffcec7 commit 4f61881

16 files changed

Lines changed: 72 additions & 5 deletions

File tree

src/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Llama Stack configuration enrichment.
2121
## [log.py](log.py)
2222
Log utilities.
2323

24+
## [sentry.py](sentry.py)
25+
Sentry error tracking initialization and configuration.
26+
2427
## [version.py](version.py)
2528
Service version that is read by project manager tools.
2629

src/app/endpoints/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ Handler for REST API call to provide metrics.
3939
## [models.py](models.py)
4040
Handler for REST API call to list available models.
4141

42+
## [prompts.py](prompts.py)
43+
Handler for REST API calls to manage Llama Stack stored prompt templates.
44+
4245
## [providers.py](providers.py)
4346
Handler for REST API calls to list and retrieve available providers.
4447

@@ -69,3 +72,6 @@ Streaming query handler using Responses API.
6972
## [tools.py](tools.py)
7073
Handler for REST API call to list available tools from MCP servers.
7174

75+
## [vector_stores.py](vector_stores.py)
76+
Handler for REST API calls to manage vector stores and files.
77+

src/app/endpoints/TODO

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
a2a.py
2+
conversations_v1.py
3+
conversations_v2.py
4+
rags.py
5+
responses.py
6+
rlsapi_v1.py

src/metrics/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## [__init__.py](__init__.py)
44
Metrics module for Lightspeed Core Stack.
55

6+
## [recording.py](recording.py)
7+
Recording helpers for Prometheus metrics.
8+
69
## [utils.py](utils.py)
710
Utility functions for metrics handling.
811

src/observability/formats/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## [__init__.py](__init__.py)
44
Event format builders for Splunk telemetry.
55

6+
## [responses.py](responses.py)
7+
Event builders for Responses API Splunk format.
8+
69
## [rlsapi.py](rlsapi.py)
710
Event builders for rlsapi v1 Splunk format.
811

src/utils/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ Quota handling helper functions.
4242
## [responses.py](responses.py)
4343
Utility functions for processing Responses API output.
4444

45+
## [rh_identity.py](rh_identity.py)
46+
Utility functions for extracting RH Identity context for telemetry.
47+
4548
## [schema_dumper.py](schema_dumper.py)
4649
Function to dump the configuration schema into OpenAPI-compatible format.
4750

tests/e2e/features/steps/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ Behave steps for POST /v1/responses (LCORE Responses API) multi-turn tests.
4545
## [rlsapi_v1.py](rlsapi_v1.py)
4646
rlsapi v1 endpoint test steps.
4747

48+
## [shields.py](shields.py)
49+
Behave steps for temporarily disabling Llama Stack shields in e2e (server mode).
50+
51+
## [tls.py](tls.py)
52+
Step definitions for TLS configuration e2e tests.
53+
4854
## [token_counters.py](token_counters.py)
4955
Step definitions for token counter validation.
5056

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# List of source files stored in `tests/e2e/mock_tls_inference_server` directory
2+
3+
## [server.py](server.py)
4+
Mock OpenAI-compatible HTTPS inference server for TLS e2e testing.
5+

tests/e2e/patches/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# List of source files stored in `tests/e2e/patches` directory
2+

tests/integration/endpoints/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Integration tests for the /authorized endpoint.
99
## [test_config_integration.py](test_config_integration.py)
1010
Integration tests for the /config endpoint.
1111

12+
## [test_conversations_v1_integration.py](test_conversations_v1_integration.py)
13+
Integration tests for the /v1/conversations REST API endpoints.
14+
15+
## [test_conversations_v2_integration.py](test_conversations_v2_integration.py)
16+
Integration tests for the /v2/conversations REST API endpoints (cache-based).
17+
1218
## [test_health_integration.py](test_health_integration.py)
1319
Integration tests for the /health endpoint.
1420

@@ -19,7 +25,7 @@ Integration tests for the /info endpoint.
1925
Integration tests for the /models endpoint (using Responses API).
2026

2127
## [test_query_byok_integration.py](test_query_byok_integration.py)
22-
Integration tests for /query endpoint BYOK inline and tool RAG functionality.
28+
Integration tests for the /query endpoint BYOK inline and tool RAG functionality.
2329

2430
## [test_query_integration.py](test_query_integration.py)
2531
Integration tests for the /query endpoint (using Responses API).
@@ -34,7 +40,7 @@ Integration tests for the /root endpoint.
3440
Integration tests for the streaming query interrupt lifecycle.
3541

3642
## [test_streaming_query_byok_integration.py](test_streaming_query_byok_integration.py)
37-
Integration tests for /streaming_query endpoint BYOK inline and tool RAG functionality.
43+
Integration tests for the /streaming_query endpoint BYOK inline and tool RAG functionality.
3844

3945
## [test_streaming_query_integration.py](test_streaming_query_integration.py)
4046
Integration tests for the /streaming_query endpoint (using Responses API).

0 commit comments

Comments
 (0)