Claude/configure OpenAI models mz9gqMake OpenAI models configurable and add OPENAI_BASE_URL (closes #517)#522
Open
BastiOfBerlin wants to merge 2 commits into
Conversation
Replace the deprecated gpt-3.5-turbo category-extraction model and the hardcoded receipt-scanning model with current-gen gpt-5.4-nano defaults, each overridable via OPENAI_MODEL_CATEGORY_EXTRACT and OPENAI_MODEL_RECEIPT_EXTRACT. Add optional OPENAI_BASE_URL to support self-hosted / OpenAI-compatible endpoints. Closes spliit-app#517. https://claude.ai/code/session_015jgzJtUpheDpE53Rq5RPxY
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
gpt-3.5-turbo(category extraction) and hardcodedgpt-5-nano(receipt scanning) with current-gengpt-5.4-nanodefaultsOPENAI_MODEL_CATEGORY_EXTRACTandOPENAI_MODEL_RECEIPT_EXTRACTenv vars to override each model independently
OPENAI_BASE_URLto support self-hosted / OpenAI-compatible endpoints.env.exampleandREADME.mdCloses #517
Test plan
OPENAI_API_KEY+ enable flags set, env parsing succeeds and both features default togpt-5.4-nanoOPENAI_MODEL_CATEGORY_EXTRACT/OPENAI_MODEL_RECEIPT_EXTRACToverrides the model usedOPENAI_BASE_URL(non-URL) fails zod validation at startupOPENAI_BASE_URLstill uses the official OpenAI API (SDK default)