# Configuration

## Load Configuration

> Endpoint to load and refresh the system configuration. This endpoint triggers a configuration reload event that updates the system settings.

```json
{"openapi":"3.1.0","info":{"title":"GLChat Document Processing Orchestrator (DPO) API","version":"0.1.0"},"paths":{"/load-config":{"post":{"tags":["Configuration"],"summary":"Load Configuration","description":"Endpoint to load and refresh the system configuration. This endpoint triggers a configuration reload event that updates the system settings.","operationId":"load_config_load_config_post","responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ConfigResponse"}}}},"500":{"description":"Internal Server Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/glchat_dpo__api__model__common__HTTPExceptionModel"}}}}}}}},"components":{"schemas":{"ConfigResponse":{"properties":{"message":{"type":"string","title":"Message","description":"The message of the config response"}},"type":"object","required":["message"],"title":"ConfigResponse","description":"Config response model."},"glchat_dpo__api__model__common__HTTPExceptionModel":{"properties":{"detail":{"$ref":"#/components/schemas/glchat_dpo__api__model__common__ErrorResponse","description":"Error details"}},"type":"object","required":["detail"],"title":"HTTPExceptionModel","description":"HTTP exception model for API error responses."},"glchat_dpo__api__model__common__ErrorResponse":{"properties":{"message":{"type":"string","title":"Message","description":"The error message"},"error":{"anyOf":[{"type":"string"},{"type":"null"}],"title":"Error","description":"Additional error details from the exception"}},"type":"object","required":["message"],"title":"ErrorResponse","description":"Error response model for API error responses."}}}}
```
