make timeout longer

This commit is contained in:
Davidlasky 2025-03-29 02:28:00 -05:00
parent 6d69494e08
commit b5ee4c1fcf
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -49,3 +49,6 @@ masks.json
# mcp config
app/mcp/mcp_config.json
# docker files
Dockerfile

View File

@ -109,7 +109,7 @@ export const UNFINISHED_INPUT = (id: string) => "unfinished-input-" + id;
export const STORAGE_KEY = "chatgpt-next-web";
export const REQUEST_TIMEOUT_MS = 60000;
export const REQUEST_TIMEOUT_MS = 300000;
export const REQUEST_TIMEOUT_MS_FOR_THINKING = REQUEST_TIMEOUT_MS * 5;
export const EXPORT_MESSAGE_CLASS_NAME = "export-markdown";
@ -408,7 +408,7 @@ You are an AI assistant with access to system tools. Your role is to help users
`;
export const SUMMARIZE_MODEL = "gpt-4o-mini";
export const SUMMARIZE_MODEL = "gpt-4o";
export const GEMINI_SUMMARIZE_MODEL = "gemini-pro";
export const DEEPSEEK_SUMMARIZE_MODEL = "deepseek-chat";