feat(llm): add API format selector to custom provider for OpenAI compatibility#13
Open
h0ll0w-AkuZr0guY wants to merge 1 commit intoNevaMind-AI:mainfrom
Open
Conversation
…nAI compatible endpoints
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.
Description
This PR addresses the issue where using an OpenAI-compatible endpoint (like
free.v36.cmor local proxies) in theCustomprovider results in a404error. The error occurs because the application previously defaulted all custom endpoints to Anthropic's/v1/messagesformat, whereas OpenAI-compatible APIs expect/v1/chat/completions.Instead of using implicit URL pattern detection, I implemented a more reliable explicit approach: adding an API Format selector (Anthropic Standard vs. OpenAI Compatible) under the Custom provider settings. This routes requests through the newly implemented
openai-adapter.tswhen needed, ensuring perfect compatibility without breaking existing custom Anthropic endpoints.Fixes #12
Key Changes
API Formatdropdown inGeneralSettings.tsxwhen the Custom provider is selected.shared.tsx,preload/index.d.ts, andsettings.config.tsto include thecustomFormatstate ('anthropic' | 'openai').createClientinutils.tsto return anOpenAIclient instance if the user selects theopenaiformat.agent.service.ts(runAgentLoopandevaluate) to routecustom+openaiformat requests through therunOpenAIAdapter.Testing Instructions
Navigate to Settings > General, select Custom Provider.
Change the API Format to
OpenAI Compatible.Input an OpenAI-compatible proxy URL (e.g.,
http://localhost:11434/v1) and API Key.Test a conversation to verify successful communication via
/v1/chat/completions.Screenshots
Checklist
npm run dev:memu)