Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion operate/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,11 @@ def validation(self, model, voice_mode):
or model == "gpt-4-with-som"
or model == "gpt-4-with-ocr"
or model == "gpt-4.1-with-ocr"
or model == "o1-with-ocr",
or model == "o1-with-ocr"
or model == "gpt-5-with-ocr"
or model == "gpt-5-research-with-ocr"
or model == "gpt-5-mini-with-ocr"
or model == "gpt-5-nano-with-ocr",
)
self.require_api_key(
"GOOGLE_API_KEY", "Google API key", model == "gemini-pro-vision"
Expand Down
2 changes: 1 addition & 1 deletion operate/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def main_entry():
"--model",
help="Specify the model to use",
required=False,
default="gpt-4-with-ocr",
default="gpt-5-with-ocr",
)

# Add a voice flag
Expand Down
Loading