File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ Handler for REST API calls to manage conversation history.
1515## [ conversations_v2.py] ( conversations_v2.py )
1616Handler 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 )
1922Handler for REST API endpoint for user feedback.
2023
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 1+ # List of source files stored in ` tests/e2e/configuration/library-mode ` directory
2+
Original file line number Diff line number Diff line change 1+ # List of source files stored in ` tests/e2e/configuration/server-mode ` directory
2+
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ Shared fixtures for integration tests.
99## [ test_configuration.py] ( test_configuration.py )
1010Integration 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 )
1316Tests the OpenAPI specification that is to be stored in docs/openapi.json.
1417
Original file line number Diff line number Diff line change @@ -12,3 +12,6 @@ Integration tests for the /health endpoint.
1212## [ test_info_integration.py] ( test_info_integration.py )
1313Integration 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+
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ Init of tests/unit/app.
66## [ test_database.py] ( test_database.py )
77Unit 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 )
1013Unit tests for routers.py.
1114
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ Unit tests for models defined in responses.py.
66## [ test_authorized_response.py] ( test_authorized_response.py )
77Unit 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 )
1013Unit tests for QueryResponse model.
1114
1215## [ test_rag_chunk.py] ( test_rag_chunk.py )
1316Unit 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
Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments