Skip to content

Commit 9825637

Browse files
author
Roman Snapko
authored
Increase AI chat expiration time to 30 days (#1698)
<!-- Ensure the title clearly reflects what was changed. Provide a clear and concise description of the changes made. The PR should only contain the changes related to the issue, and no other unrelated changes. --> Fixes OPS-3159.
1 parent 6a20dc6 commit 9825637

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/server/shared/src/lib/system

packages/server/shared/src/lib/system/system.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ const systemPropDefaultValues: Partial<Record<SystemProp, string>> = {
9595
[AppSystemProp.REQUEST_BODY_LIMIT]: '10',
9696
[SharedSystemProp.LANGFUSE_HOST]: 'https://us.cloud.langfuse.com',
9797
[AppSystemProp.MAX_LLM_CALLS_WITHOUT_INTERACTION]: '100',
98-
[AppSystemProp.LLM_CHAT_EXPIRE_TIME_SECONDS]: '86400', // 24 hours
98+
[AppSystemProp.LLM_CHAT_EXPIRE_TIME_SECONDS]: '2592000', // 30 days
9999
[AppSystemProp.TELEMETRY_MODE]: 'COLLECTOR',
100100
[AppSystemProp.TELEMETRY_COLLECTOR_URL]: 'https://telemetry.openops.com/save',
101101
[SharedSystemProp.ENABLE_HOST_VALIDATION]: 'true',

0 commit comments

Comments
 (0)