60 lines
1.1 KiB
TOML
60 lines
1.1 KiB
TOML
[project]
|
|
# Duration (in seconds) during which the session is saved when the connection is lost
|
|
session_timeout = 3600
|
|
|
|
# Duration (in seconds) of the user session expiry
|
|
user_session_timeout = 1296000 # 15 days
|
|
|
|
# Disable third party caching
|
|
cache = false
|
|
|
|
# Authorized origins
|
|
allow_origins = ["*"]
|
|
|
|
[features]
|
|
# Disable HTML rendering for security
|
|
unsafe_allow_html = false
|
|
|
|
# Disable LaTeX
|
|
latex = false
|
|
|
|
# Enable markdown in user messages
|
|
user_message_markdown = true
|
|
|
|
# Allow users to edit their own messages
|
|
edit_message = true
|
|
|
|
# Disable file uploads
|
|
[features.spontaneous_file_upload]
|
|
enabled = false
|
|
|
|
# Disable audio
|
|
[features.audio]
|
|
enabled = false
|
|
|
|
# MCP is handled via Python code, not UI
|
|
[features.mcp]
|
|
enabled = false
|
|
|
|
[UI]
|
|
# Assistant display name
|
|
name = "Legal AI Assistant"
|
|
|
|
# Default dark theme
|
|
default_theme = "dark"
|
|
|
|
# Ask user confirmation before clearing chat
|
|
confirm_new_chat = true
|
|
|
|
# Show only tool calls in Chain of Thought
|
|
cot = "full"
|
|
|
|
# Custom CSS
|
|
custom_css = "/public/custom.css"
|
|
|
|
# The style of alert boxes.
|
|
alert_style = "modern"
|
|
|
|
[meta]
|
|
generated_by = "2.11.1"
|