Skip to content

Commit 383b1a8

Browse files
authored
Merge pull request lightspeed-core#915 from tisnik/regenerated-internal-doc
LCORE-1026: Regenerated internal doc
2 parents 7e3bde5 + cae203d commit 383b1a8

9 files changed

Lines changed: 43 additions & 5 deletions

File tree

src/app/endpoints/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Handler for REST API calls to manage conversation history.
1515
## [conversations_v2.py](conversations_v2.py)
1616
Handler for REST API calls to manage conversation history.
1717

18+
## [conversations_v3.py](conversations_v3.py)
19+
Handler for REST API calls to manage conversation history using Conversations API.
20+
1821
## [feedback.py](feedback.py)
1922
Handler for REST API endpoint for user feedback.
2023

src/models/rlsapi/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# List of source files stored in `src/models/rlsapi` directory
2+
3+
## [__init__.py](__init__.py)
4+
Pydantic models for rlsapi v1 integration.
5+
6+
## [requests.py](requests.py)
7+
Models for rlsapi v1 REST API requests.
8+
9+
## [responses.py](responses.py)
10+
Models for rlsapi v1 REST API responses.
11+
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/configuration/library-mode` directory
2+
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/configuration/server-mode` directory
2+

tests/integration/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ Shared fixtures for integration tests.
99
## [test_configuration.py](test_configuration.py)
1010
Integration tests for configuration loading and handling.
1111

12+
## [test_middleware_integration.py](test_middleware_integration.py)
13+
Integration tests for the global exception middleware.
14+
1215
## [test_openapi_json.py](test_openapi_json.py)
1316
Tests the OpenAPI specification that is to be stored in docs/openapi.json.
1417

tests/integration/endpoints/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ Integration tests for the /health endpoint.
1212
## [test_info_integration.py](test_info_integration.py)
1313
Integration tests for the /info endpoint.
1414

15+
## [test_query_v2_integration.py](test_query_v2_integration.py)
16+
Integration tests for the /query endpoint (v2 with Responses API).
17+

tests/unit/app/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Init of tests/unit/app.
66
## [test_database.py](test_database.py)
77
Unit tests for app.database module.
88

9+
## [test_main_middleware.py](test_main_middleware.py)
10+
Unit tests for the global exception middleware in main.py.
11+
912
## [test_routers.py](test_routers.py)
1013
Unit tests for routers.py.
1114

tests/unit/models/responses/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ Unit tests for models defined in responses.py.
66
## [test_authorized_response.py](test_authorized_response.py)
77
Unit tests for AuthorizedResponse model.
88

9+
## [test_error_responses.py](test_error_responses.py)
10+
Unit tests for all error response models.
11+
912
## [test_query_response.py](test_query_response.py)
1013
Unit tests for QueryResponse model.
1114

1215
## [test_rag_chunk.py](test_rag_chunk.py)
1316
Unit tests for RAGChunk model.
1417

15-
## [test_status_response.py](test_status_response.py)
16-
Unit tests for StatusResponse model.
17-
18-
## [test_unauthorized_response.py](test_unauthorized_response.py)
19-
Unit tests for UnauthorizedResponse model.
18+
## [test_successful_responses.py](test_successful_responses.py)
19+
Unit tests for all successful response models.
2020

tests/unit/models/rlsapi/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# List of source files stored in `tests/unit/models/rlsapi` directory
2+
3+
## [__init__.py](__init__.py)
4+
Unit tests for rlsapi v1 models.
5+
6+
## [test_requests.py](test_requests.py)
7+
Unit tests for rlsapi v1 request models.
8+
9+
## [test_responses.py](test_responses.py)
10+
Unit tests for rlsapi v1 response models.
11+

0 commit comments

Comments
 (0)