Shamik commited on
Commit
29e2065
·
verified ·
1 Parent(s): 6986c15

fix: unable to find .env and raise error= false.

Browse files
src/insurance_assistants/complex_rag.py CHANGED
@@ -47,7 +47,7 @@ processor = ColQwen2_5_Processor.from_pretrained(
47
  pretrained_model_name_or_path=model_name,
48
  use_fast=True,
49
  )
50
- _ = load_dotenv(dotenv_path=find_dotenv(raise_error_if_not_found=True))
51
  openai_client = OpenAI()
52
 
53
 
 
47
  pretrained_model_name_or_path=model_name,
48
  use_fast=True,
49
  )
50
+ _ = load_dotenv(dotenv_path=find_dotenv(raise_error_if_not_found=False))
51
  openai_client = OpenAI()
52
 
53