vitalune commited on
Commit
f818a09
·
verified ·
1 Parent(s): 79936c9

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -14,7 +14,7 @@ load_dotenv()
14
 
15
  # Backend configuration (from llama_test.ipynb)
16
  # These values are fixed and cannot be changed from the UI
17
- LLM_MODEL = "gpt-5-nano-2025-08-07"
18
  EMBEDDING_MODEL = "text-embedding-3-small"
19
  TEMPERATURE = 0.1
20
  DATA_DIR = "src/data"
@@ -91,7 +91,7 @@ def load_documents_with_llamaparse(data_dir: str, llama_api_key: str) -> List[Do
91
  parser = LlamaParse(
92
  api_key=llama_api_key,
93
  parse_mode="parse_page_with_agent",
94
- model="openai-gpt-4-1-mini",
95
  high_res_ocr=True,
96
  adaptive_long_table=True,
97
  outlined_table_extraction=True,
 
14
 
15
  # Backend configuration (from llama_test.ipynb)
16
  # These values are fixed and cannot be changed from the UI
17
+ LLM_MODEL = "gpt-5-mini-2025-08-07"
18
  EMBEDDING_MODEL = "text-embedding-3-small"
19
  TEMPERATURE = 0.1
20
  DATA_DIR = "src/data"
 
91
  parser = LlamaParse(
92
  api_key=llama_api_key,
93
  parse_mode="parse_page_with_agent",
94
+ model="openai-gpt-5-mini",
95
  high_res_ocr=True,
96
  adaptive_long_table=True,
97
  outlined_table_extraction=True,