v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
System

Read System Settings

get/system/settings

Query parameters

cookie_namestring nullable

Response

Successful Response

created_atstring date-time

UTC timestamp when the record was created.

updated_atstring date-time

UTC timestamp when the record was last updated.

idinteger nullable

Primary key for the system settings record.

maintenance_enabledboolean

Whether maintenance mode is currently enabled.

tracing_enabledboolean

Whether observability tracing is enabled system-wide.

inbound_guardrail_llm_settings_idinteger nullable

ID of the LLM settings used for the inbound guardrail.

outbound_guardrail_llm_settings_idinteger nullable

ID of the LLM settings used for the outbound guardrail.

embedding_llm_settings_idinteger nullable

ID of the LLM settings used for embeddings.

transcription_llm_settings_idinteger nullable

ID of the LLM settings used for audio transcription.

maintenance_start_atstring date-time nullable

Timestamp when the scheduled maintenance window starts.

maintenance_end_atstring date-time nullable

Timestamp when the scheduled maintenance window ends.

maintenance_messagestring nullable

Message shown to users during maintenance mode.

Example response

{
  "created_at": "2026-01-15T10:30:00Z",
  "updated_at": "2026-01-16T08:00:00Z",
  "id": 1,
  "tracing_enabled": true,
  "inbound_guardrail_llm_settings_id": 1,
  "outbound_guardrail_llm_settings_id": 1,
  "embedding_llm_settings_id": 1,
  "transcription_llm_settings_id": 1,
  "maintenance_start_at": "2026-06-23T12:00:00Z",
  "maintenance_end_at": "2026-06-23T14:00:00Z",
  "maintenance_message": "The system is under maintenance."
}