ciyidogan commited on
Commit
bdc5a3f
·
verified ·
1 Parent(s): 15081a7

Update llm_openai.py

Browse files
Files changed (1) hide show
  1. llm_openai.py +2 -0
llm_openai.py CHANGED
@@ -6,6 +6,8 @@ from typing import Dict, List, Any
6
  from llm_interface import LLMInterface
7
  from logger import log_info, log_error, log_warning, log_debug
8
 
 
 
9
  class OpenAILLM(LLMInterface):
10
  """OpenAI GPT integration with improved error handling"""
11
 
 
6
  from llm_interface import LLMInterface
7
  from logger import log_info, log_error, log_warning, log_debug
8
 
9
+ DEFAULT_LLM_TIMEOUT = int(os.getenv("LLM_TIMEOUT_SECONDS", "60"))
10
+
11
  class OpenAILLM(LLMInterface):
12
  """OpenAI GPT integration with improved error handling"""
13