post /chatkit/sessions
Create a ChatKit session.
-
user: stringA free-form string that identifies your end user; ensures this Session can access other objects that have the same
userscope. -
workflow: ChatSessionWorkflowParamWorkflow that powers the session.
-
id: stringIdentifier for the workflow invoked by the session.
-
state_variables: optional map[string or boolean or number]State variables forwarded to the workflow. Keys may be up to 64 characters, values must be primitive types, and the map defaults to an empty object.
-
string -
boolean -
number
-
-
tracing: optional object { enabled }Optional tracing overrides for the workflow invocation. When omitted, tracing is enabled by default.
-
enabled: optional booleanWhether tracing is enabled during the session. Defaults to true.
-
-
version: optional stringSpecific workflow version to run. Defaults to the latest deployed version.
-
-
chatkit_configuration: optional ChatSessionChatKitConfigurationParamOptional overrides for ChatKit runtime configuration features
-
automatic_thread_titling: optional object { enabled }Configuration for automatic thread titling. When omitted, automatic thread titling is enabled by default.
-
enabled: optional booleanEnable automatic thread title generation. Defaults to true.
-
-
file_upload: optional object { enabled, max_file_size, max_files }Configuration for upload enablement and limits. When omitted, uploads are disabled by default (max_files 10, max_file_size 512 MB).
-
enabled: optional booleanEnable uploads for this session. Defaults to false.
-
max_file_size: optional numberMaximum size in megabytes for each uploaded file. Defaults to 512 MB, which is the maximum allowable size.
-
max_files: optional numberMaximum number of files that can be uploaded to the session. Defaults to 10.
-
-
history: optional object { enabled, recent_threads }Configuration for chat history retention. When omitted, history is enabled by default with no limit on recent_threads (null).
-
enabled: optional booleanEnables chat users to access previous ChatKit threads. Defaults to true.
-
recent_threads: optional numberNumber of recent ChatKit threads users have access to. Defaults to unlimited when unset.
-
-
-
expires_after: optional ChatSessionExpiresAfterParamOptional override for session expiration timing in seconds from creation. Defaults to 10 minutes.
-
anchor: "created_at"Base timestamp used to calculate expiration. Currently fixed to
created_at."created_at"
-
seconds: numberNumber of seconds after the anchor when the session expires.
-
-
rate_limits: optional ChatSessionRateLimitsParamOptional override for per-minute request limits. When omitted, defaults to 10.
-
max_requests_per_1_minute: optional numberMaximum number of requests allowed per minute for the session. Defaults to 10.
-
-
ChatSession object { id, chatkit_configuration, client_secret, 7 more }Represents a ChatKit session and its resolved configuration.
-
id: stringIdentifier for the ChatKit session.
-
chatkit_configuration: ChatSessionChatKitConfigurationResolved ChatKit feature configuration for the session.
-
automatic_thread_titling: ChatSessionAutomaticThreadTitlingAutomatic thread titling preferences.
-
enabled: booleanWhether automatic thread titling is enabled.
-
-
file_upload: ChatSessionFileUploadUpload settings for the session.
-
enabled: booleanIndicates if uploads are enabled for the session.
-
max_file_size: numberMaximum upload size in megabytes.
-
max_files: numberMaximum number of uploads allowed during the session.
-
-
history: ChatSessionHistoryHistory retention configuration.
-
enabled: booleanIndicates if chat history is persisted for the session.
-
recent_threads: numberNumber of prior threads surfaced in history views. Defaults to null when all history is retained.
-
-
-
client_secret: stringEphemeral client secret that authenticates session requests.
-
expires_at: numberUnix timestamp (in seconds) for when the session expires.
-
max_requests_per_1_minute: numberConvenience copy of the per-minute request limit.
-
object: "chatkit.session"Type discriminator that is always
chatkit.session."chatkit.session"
-
rate_limits: ChatSessionRateLimitsResolved rate limit values.
-
max_requests_per_1_minute: numberMaximum allowed requests per one-minute window.
-
-
status: ChatSessionStatusCurrent lifecycle state of the session.
-
"active" -
"expired" -
"cancelled"
-
-
user: stringUser identifier associated with the session.
-
workflow: ChatKitWorkflowWorkflow metadata for the session.
-
id: stringIdentifier of the workflow backing the session.
-
state_variables: map[string or boolean or number]State variable key-value pairs applied when invoking the workflow. Defaults to null when no overrides were provided.
-
string -
boolean -
number
-
-
tracing: object { enabled }Tracing settings applied to the workflow.
-
enabled: booleanIndicates whether tracing is enabled.
-
-
version: stringSpecific workflow version used for the session. Defaults to null when using the latest deployment.
-
-
curl https://api.openai.com/v1/chatkit/sessions \
-H 'Content-Type: application/json' \
-H 'OpenAI-Beta: chatkit_beta=v1' \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-d '{
"user": "x",
"workflow": {
"id": "id"
}
}'{
"id": "id",
"chatkit_configuration": {
"automatic_thread_titling": {
"enabled": true
},
"file_upload": {
"enabled": true,
"max_file_size": 0,
"max_files": 0
},
"history": {
"enabled": true,
"recent_threads": 0
}
},
"client_secret": "client_secret",
"expires_at": 0,
"max_requests_per_1_minute": 0,
"object": "chatkit.session",
"rate_limits": {
"max_requests_per_1_minute": 0
},
"status": "active",
"user": "user",
"workflow": {
"id": "id",
"state_variables": {
"foo": "string"
},
"tracing": {
"enabled": true
},
"version": "version"
}
}curl https://api.openai.com/v1/chatkit/sessions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "OpenAI-Beta: chatkit_beta=v1" \
-d '{
"workflow": {
"id": "workflow_alpha",
"version": "2024-10-01"
},
"scope": {
"project": "alpha",
"environment": "staging"
},
"expires_after": 1800,
"max_requests_per_1_minute": 60,
"max_requests_per_session": 500
}'{
"client_secret": "chatkit_token_123",
"expires_at": 1735689600,
"workflow": {
"id": "workflow_alpha",
"version": "2024-10-01"
},
"scope": {
"project": "alpha",
"environment": "staging"
},
"max_requests_per_1_minute": 60,
"max_requests_per_session": 500,
"status": "active"
}