Skip to main content
PUT
/
api
/
v1
/
settings
Python
from everos import EverOS

client = EverOS()
settings = client.v1.settings

response = settings.update(
    timezone="<string>",
    extraction_mode="<string>"
)
print(response)
{
  "data": {
    "timezone": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "llm_custom_setting": {}
  }
}

Authorizations

Authorization
string
header
default:Bearer <api_key>
required

Bearer authentication header of the form Bearer 'api_key', obtain your API key from everos.evermind.ai.

Body

application/json
llm_custom_setting
object

LLM custom settings for algorithm control

timezone
string | null

IANA timezone identifier

Examples:

"UTC"

"Asia/Shanghai"

Response

Settings updated/initialized

data
object