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
3 changes: 3 additions & 0 deletions src/app/endpoints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ Handler for REST API calls to manage conversation history.
## [conversations_v2.py](conversations_v2.py)
Handler for REST API calls to manage conversation history.

## [conversations_v3.py](conversations_v3.py)
Handler for REST API calls to manage conversation history using Conversations API.

## [feedback.py](feedback.py)
Handler for REST API endpoint for user feedback.

Expand Down
11 changes: 11 additions & 0 deletions src/models/rlsapi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# List of source files stored in `src/models/rlsapi` directory

## [__init__.py](__init__.py)
Pydantic models for rlsapi v1 integration.

## [requests.py](requests.py)
Models for rlsapi v1 REST API requests.

## [responses.py](responses.py)
Models for rlsapi v1 REST API responses.

2 changes: 2 additions & 0 deletions tests/e2e/configuration/library-mode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# List of source files stored in `tests/e2e/configuration/library-mode` directory

2 changes: 2 additions & 0 deletions tests/e2e/configuration/server-mode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# List of source files stored in `tests/e2e/configuration/server-mode` directory

3 changes: 3 additions & 0 deletions tests/integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ Shared fixtures for integration tests.
## [test_configuration.py](test_configuration.py)
Integration tests for configuration loading and handling.

## [test_middleware_integration.py](test_middleware_integration.py)
Integration tests for the global exception middleware.

## [test_openapi_json.py](test_openapi_json.py)
Tests the OpenAPI specification that is to be stored in docs/openapi.json.

Expand Down
3 changes: 3 additions & 0 deletions tests/integration/endpoints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ Integration tests for the /health endpoint.
## [test_info_integration.py](test_info_integration.py)
Integration tests for the /info endpoint.

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

3 changes: 3 additions & 0 deletions tests/unit/app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Init of tests/unit/app.
## [test_database.py](test_database.py)
Unit tests for app.database module.

## [test_main_middleware.py](test_main_middleware.py)
Unit tests for the global exception middleware in main.py.

## [test_routers.py](test_routers.py)
Unit tests for routers.py.

10 changes: 5 additions & 5 deletions tests/unit/models/responses/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ Unit tests for models defined in responses.py.
## [test_authorized_response.py](test_authorized_response.py)
Unit tests for AuthorizedResponse model.

## [test_error_responses.py](test_error_responses.py)
Unit tests for all error response models.

## [test_query_response.py](test_query_response.py)
Unit tests for QueryResponse model.

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

## [test_status_response.py](test_status_response.py)
Unit tests for StatusResponse model.

## [test_unauthorized_response.py](test_unauthorized_response.py)
Unit tests for UnauthorizedResponse model.
## [test_successful_responses.py](test_successful_responses.py)
Unit tests for all successful response models.

11 changes: 11 additions & 0 deletions tests/unit/models/rlsapi/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# List of source files stored in `tests/unit/models/rlsapi` directory

## [__init__.py](__init__.py)
Unit tests for rlsapi v1 models.

## [test_requests.py](test_requests.py)
Unit tests for rlsapi v1 request models.

## [test_responses.py](test_responses.py)
Unit tests for rlsapi v1 response models.

Loading