mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
Electron ENV fix
Allow OPENAI_LIKE_API_* through Electron env variables.
This commit is contained in:
@@ -16,7 +16,11 @@ export default class OpenAILikeProvider extends BaseProvider {
|
||||
staticModels: ModelInfo[] = [];
|
||||
|
||||
getEnvDefinedModels(serverEnv: Record<string, string> = {}): ModelInfo[] {
|
||||
const models = serverEnv[this.config.modelKey] || process.env[this.config.modelKey];
|
||||
const models =
|
||||
serverEnv[this.config.modelKey] ||
|
||||
process.env[this.config.modelKey] ||
|
||||
import.meta.env[this.config.modelKey] ||
|
||||
'';
|
||||
console.debug(`${this.name}: ${this.config.modelKey}=${models}`);
|
||||
|
||||
const mklabel = (model: string) => {
|
||||
|
||||
Reference in New Issue
Block a user