-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not Working with Google Gemini API #390
Comments
@bhouston Please let me know if I am missing something while configuring? |
Issue Triage AnalysisIssue Classification
Initial AssessmentThe issue reports an error when trying to use mycoder with Google Gemini API via the OpenAI compatibility layer. The error occurs with the following configuration: export default {
provider: 'openai',
model: 'gemini-2.5-pro-exp-03-25',
baseUrl: 'https://generativelanguage.googleapis.com/v1beta/openai',
logLevel: 'verbose',
githubMode: false,
headless: true
}; The error message is:
Duplication CheckThis issue is related to and has spawned issue #391 "Fix Google Gemini OpenAI-compatible API integration" which proposes a solution. Issue InvestigationRoot Cause Analysis:
this.client = new OpenAI({
apiKey: this.apiKey,
...(this.baseUrl && { baseURL: this.baseUrl }),
});
Affected Components:
Possible Solutions:
Next Steps
RecommendationBased on the investigation, I recommend:
This appears to be a legitimate bug that requires code changes to support Google's Gemini API through their OpenAI-compatible endpoint. |
I have the following config for
mycoder.config.js
:I keep getting the following error:
The text was updated successfully, but these errors were encountered: