mirror of
https://github.com/stackblitz/bolt.new
synced 2025-06-26 18:17:50 +00:00
feat: configure dynamic providers via .env (#1108)
* Use backend API route to fetch dynamic models # Conflicts: # app/components/chat/BaseChat.tsx * Override ApiKeys if provided in frontend * Remove obsolete artifact * Transport api keys from client to server in header * Cache static provider information * Restore reading provider settings from cookie * Reload only a single provider on api key change * Transport apiKeys and providerSettings via cookies. While doing this, introduce a simple helper function for cookies
This commit is contained in:
parent
87ff81035f
commit
e19644268c
@ -3,13 +3,13 @@
|
|||||||
* Preventing TS checks with files presented in the video for a better presentation.
|
* Preventing TS checks with files presented in the video for a better presentation.
|
||||||
*/
|
*/
|
||||||
import type { Message } from 'ai';
|
import type { Message } from 'ai';
|
||||||
import React, { type RefCallback, useCallback, useEffect, useState } from 'react';
|
import React, { type RefCallback, useEffect, useState } from 'react';
|
||||||
import { ClientOnly } from 'remix-utils/client-only';
|
import { ClientOnly } from 'remix-utils/client-only';
|
||||||
import { Menu } from '~/components/sidebar/Menu.client';
|
import { Menu } from '~/components/sidebar/Menu.client';
|
||||||
import { IconButton } from '~/components/ui/IconButton';
|
import { IconButton } from '~/components/ui/IconButton';
|
||||||
import { Workbench } from '~/components/workbench/Workbench.client';
|
import { Workbench } from '~/components/workbench/Workbench.client';
|
||||||
import { classNames } from '~/utils/classNames';
|
import { classNames } from '~/utils/classNames';
|
||||||
import { MODEL_LIST, PROVIDER_LIST, initializeModelList } from '~/utils/constants';
|
import { PROVIDER_LIST } from '~/utils/constants';
|
||||||
import { Messages } from './Messages.client';
|
import { Messages } from './Messages.client';
|
||||||
import { SendButton } from './SendButton.client';
|
import { SendButton } from './SendButton.client';
|
||||||
import { APIKeyManager, getApiKeysFromCookies } from './APIKeyManager';
|
import { APIKeyManager, getApiKeysFromCookies } from './APIKeyManager';
|
||||||
@ -25,13 +25,13 @@ import GitCloneButton from './GitCloneButton';
|
|||||||
import FilePreview from './FilePreview';
|
import FilePreview from './FilePreview';
|
||||||
import { ModelSelector } from '~/components/chat/ModelSelector';
|
import { ModelSelector } from '~/components/chat/ModelSelector';
|
||||||
import { SpeechRecognitionButton } from '~/components/chat/SpeechRecognition';
|
import { SpeechRecognitionButton } from '~/components/chat/SpeechRecognition';
|
||||||
import type { IProviderSetting, ProviderInfo } from '~/types/model';
|
import type { ProviderInfo } from '~/types/model';
|
||||||
import { ScreenshotStateManager } from './ScreenshotStateManager';
|
import { ScreenshotStateManager } from './ScreenshotStateManager';
|
||||||
import { toast } from 'react-toastify';
|
import { toast } from 'react-toastify';
|
||||||
import StarterTemplates from './StarterTemplates';
|
import StarterTemplates from './StarterTemplates';
|
||||||
import type { ActionAlert } from '~/types/actions';
|
import type { ActionAlert } from '~/types/actions';
|
||||||
import ChatAlert from './ChatAlert';
|
import ChatAlert from './ChatAlert';
|
||||||
import { LLMManager } from '~/lib/modules/llm/manager';
|
import type { ModelInfo } from '~/lib/modules/llm/types';
|
||||||
|
|
||||||
const TEXTAREA_MIN_HEIGHT = 76;
|
const TEXTAREA_MIN_HEIGHT = 76;
|
||||||
|
|
||||||
@ -102,35 +102,13 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
|
|||||||
) => {
|
) => {
|
||||||
const TEXTAREA_MAX_HEIGHT = chatStarted ? 400 : 200;
|
const TEXTAREA_MAX_HEIGHT = chatStarted ? 400 : 200;
|
||||||
const [apiKeys, setApiKeys] = useState<Record<string, string>>(getApiKeysFromCookies());
|
const [apiKeys, setApiKeys] = useState<Record<string, string>>(getApiKeysFromCookies());
|
||||||
const [modelList, setModelList] = useState(MODEL_LIST);
|
const [modelList, setModelList] = useState<ModelInfo[]>([]);
|
||||||
const [isModelSettingsCollapsed, setIsModelSettingsCollapsed] = useState(false);
|
const [isModelSettingsCollapsed, setIsModelSettingsCollapsed] = useState(false);
|
||||||
const [isListening, setIsListening] = useState(false);
|
const [isListening, setIsListening] = useState(false);
|
||||||
const [recognition, setRecognition] = useState<SpeechRecognition | null>(null);
|
const [recognition, setRecognition] = useState<SpeechRecognition | null>(null);
|
||||||
const [transcript, setTranscript] = useState('');
|
const [transcript, setTranscript] = useState('');
|
||||||
const [isModelLoading, setIsModelLoading] = useState<string | undefined>('all');
|
const [isModelLoading, setIsModelLoading] = useState<string | undefined>('all');
|
||||||
|
|
||||||
const getProviderSettings = useCallback(() => {
|
|
||||||
let providerSettings: Record<string, IProviderSetting> | undefined = undefined;
|
|
||||||
|
|
||||||
try {
|
|
||||||
const savedProviderSettings = Cookies.get('providers');
|
|
||||||
|
|
||||||
if (savedProviderSettings) {
|
|
||||||
const parsedProviderSettings = JSON.parse(savedProviderSettings);
|
|
||||||
|
|
||||||
if (typeof parsedProviderSettings === 'object' && parsedProviderSettings !== null) {
|
|
||||||
providerSettings = parsedProviderSettings;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error loading Provider Settings from cookies:', error);
|
|
||||||
|
|
||||||
// Clear invalid cookie data
|
|
||||||
Cookies.remove('providers');
|
|
||||||
}
|
|
||||||
|
|
||||||
return providerSettings;
|
|
||||||
}, []);
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
console.log(transcript);
|
console.log(transcript);
|
||||||
}, [transcript]);
|
}, [transcript]);
|
||||||
@ -169,7 +147,6 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (typeof window !== 'undefined') {
|
if (typeof window !== 'undefined') {
|
||||||
const providerSettings = getProviderSettings();
|
|
||||||
let parsedApiKeys: Record<string, string> | undefined = {};
|
let parsedApiKeys: Record<string, string> | undefined = {};
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@ -177,17 +154,18 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
|
|||||||
setApiKeys(parsedApiKeys);
|
setApiKeys(parsedApiKeys);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('Error loading API keys from cookies:', error);
|
console.error('Error loading API keys from cookies:', error);
|
||||||
|
|
||||||
// Clear invalid cookie data
|
|
||||||
Cookies.remove('apiKeys');
|
Cookies.remove('apiKeys');
|
||||||
}
|
}
|
||||||
|
|
||||||
setIsModelLoading('all');
|
setIsModelLoading('all');
|
||||||
initializeModelList({ apiKeys: parsedApiKeys, providerSettings })
|
fetch('/api/models')
|
||||||
.then((modelList) => {
|
.then((response) => response.json())
|
||||||
setModelList(modelList);
|
.then((data) => {
|
||||||
|
const typedData = data as { modelList: ModelInfo[] };
|
||||||
|
setModelList(typedData.modelList);
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
console.error('Error initializing model list:', error);
|
console.error('Error fetching model list:', error);
|
||||||
})
|
})
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
setIsModelLoading(undefined);
|
setIsModelLoading(undefined);
|
||||||
@ -200,29 +178,24 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
|
|||||||
setApiKeys(newApiKeys);
|
setApiKeys(newApiKeys);
|
||||||
Cookies.set('apiKeys', JSON.stringify(newApiKeys));
|
Cookies.set('apiKeys', JSON.stringify(newApiKeys));
|
||||||
|
|
||||||
const provider = LLMManager.getInstance(import.meta.env || process.env || {}).getProvider(providerName);
|
setIsModelLoading(providerName);
|
||||||
|
|
||||||
if (provider && provider.getDynamicModels) {
|
let providerModels: ModelInfo[] = [];
|
||||||
setIsModelLoading(providerName);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const providerSettings = getProviderSettings();
|
const response = await fetch(`/api/models/${encodeURIComponent(providerName)}`);
|
||||||
const staticModels = provider.staticModels;
|
const data = await response.json();
|
||||||
const dynamicModels = await provider.getDynamicModels(
|
providerModels = (data as { modelList: ModelInfo[] }).modelList;
|
||||||
newApiKeys,
|
} catch (error) {
|
||||||
providerSettings,
|
console.error('Error loading dynamic models for:', providerName, error);
|
||||||
import.meta.env || process.env || {},
|
|
||||||
);
|
|
||||||
|
|
||||||
setModelList((preModels) => {
|
|
||||||
const filteredOutPreModels = preModels.filter((x) => x.provider !== providerName);
|
|
||||||
return [...filteredOutPreModels, ...staticModels, ...dynamicModels];
|
|
||||||
});
|
|
||||||
} catch (error) {
|
|
||||||
console.error('Error loading dynamic models:', error);
|
|
||||||
}
|
|
||||||
setIsModelLoading(undefined);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only update models for the specific provider
|
||||||
|
setModelList((prevModels) => {
|
||||||
|
const otherModels = prevModels.filter((model) => model.provider !== providerName);
|
||||||
|
return [...otherModels, ...providerModels];
|
||||||
|
});
|
||||||
|
setIsModelLoading(undefined);
|
||||||
};
|
};
|
||||||
|
|
||||||
const startListening = () => {
|
const startListening = () => {
|
||||||
|
|||||||
33
app/lib/api/cookies.ts
Normal file
33
app/lib/api/cookies.ts
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
export function parseCookies(cookieHeader: string | null) {
|
||||||
|
const cookies: Record<string, string> = {};
|
||||||
|
|
||||||
|
if (!cookieHeader) {
|
||||||
|
return cookies;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Split the cookie string by semicolons and spaces
|
||||||
|
const items = cookieHeader.split(';').map((cookie) => cookie.trim());
|
||||||
|
|
||||||
|
items.forEach((item) => {
|
||||||
|
const [name, ...rest] = item.split('=');
|
||||||
|
|
||||||
|
if (name && rest.length > 0) {
|
||||||
|
// Decode the name and value, and join value parts in case it contains '='
|
||||||
|
const decodedName = decodeURIComponent(name.trim());
|
||||||
|
const decodedValue = decodeURIComponent(rest.join('=').trim());
|
||||||
|
cookies[decodedName] = decodedValue;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return cookies;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getApiKeysFromCookie(cookieHeader: string | null): Record<string, string> {
|
||||||
|
const cookies = parseCookies(cookieHeader);
|
||||||
|
return cookies.apiKeys ? JSON.parse(cookies.apiKeys) : {};
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getProviderSettingsFromCookie(cookieHeader: string | null): Record<string, any> {
|
||||||
|
const cookies = parseCookies(cookieHeader);
|
||||||
|
return cookies.providers ? JSON.parse(cookies.providers) : {};
|
||||||
|
}
|
||||||
@ -83,7 +83,7 @@ export class LLMManager {
|
|||||||
|
|
||||||
let enabledProviders = Array.from(this._providers.values()).map((p) => p.name);
|
let enabledProviders = Array.from(this._providers.values()).map((p) => p.name);
|
||||||
|
|
||||||
if (providerSettings) {
|
if (providerSettings && Object.keys(providerSettings).length > 0) {
|
||||||
enabledProviders = enabledProviders.filter((p) => providerSettings[p].enabled);
|
enabledProviders = enabledProviders.filter((p) => providerSettings[p].enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,34 +1,13 @@
|
|||||||
import { type ActionFunctionArgs } from '@remix-run/cloudflare';
|
import { type ActionFunctionArgs } from '@remix-run/cloudflare';
|
||||||
|
|
||||||
//import { StreamingTextResponse, parseStreamPart } from 'ai';
|
|
||||||
import { streamText } from '~/lib/.server/llm/stream-text';
|
import { streamText } from '~/lib/.server/llm/stream-text';
|
||||||
import { stripIndents } from '~/utils/stripIndent';
|
import { stripIndents } from '~/utils/stripIndent';
|
||||||
import type { IProviderSetting, ProviderInfo } from '~/types/model';
|
import type { ProviderInfo } from '~/types/model';
|
||||||
|
import { getApiKeysFromCookie, getProviderSettingsFromCookie } from '~/lib/api/cookies';
|
||||||
|
|
||||||
export async function action(args: ActionFunctionArgs) {
|
export async function action(args: ActionFunctionArgs) {
|
||||||
return enhancerAction(args);
|
return enhancerAction(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseCookies(cookieHeader: string) {
|
|
||||||
const cookies: any = {};
|
|
||||||
|
|
||||||
// Split the cookie string by semicolons and spaces
|
|
||||||
const items = cookieHeader.split(';').map((cookie) => cookie.trim());
|
|
||||||
|
|
||||||
items.forEach((item) => {
|
|
||||||
const [name, ...rest] = item.split('=');
|
|
||||||
|
|
||||||
if (name && rest) {
|
|
||||||
// Decode the name and value, and join value parts in case it contains '='
|
|
||||||
const decodedName = decodeURIComponent(name.trim());
|
|
||||||
const decodedValue = decodeURIComponent(rest.join('=').trim());
|
|
||||||
cookies[decodedName] = decodedValue;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return cookies;
|
|
||||||
}
|
|
||||||
|
|
||||||
async function enhancerAction({ context, request }: ActionFunctionArgs) {
|
async function enhancerAction({ context, request }: ActionFunctionArgs) {
|
||||||
const { message, model, provider } = await request.json<{
|
const { message, model, provider } = await request.json<{
|
||||||
message: string;
|
message: string;
|
||||||
@ -55,12 +34,8 @@ async function enhancerAction({ context, request }: ActionFunctionArgs) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const cookieHeader = request.headers.get('Cookie');
|
const cookieHeader = request.headers.get('Cookie');
|
||||||
|
const apiKeys = getApiKeysFromCookie(cookieHeader);
|
||||||
// Parse the cookie's value (returns an object or null if no cookie exists)
|
const providerSettings = getProviderSettingsFromCookie(cookieHeader);
|
||||||
const apiKeys = JSON.parse(parseCookies(cookieHeader || '').apiKeys || '{}');
|
|
||||||
const providerSettings: Record<string, IProviderSetting> = JSON.parse(
|
|
||||||
parseCookies(cookieHeader || '').providers || '{}',
|
|
||||||
);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const result = await streamText({
|
const result = await streamText({
|
||||||
|
|||||||
@ -1,34 +1,24 @@
|
|||||||
import { type ActionFunctionArgs } from '@remix-run/cloudflare';
|
import { type ActionFunctionArgs } from '@remix-run/cloudflare';
|
||||||
|
|
||||||
//import { StreamingTextResponse, parseStreamPart } from 'ai';
|
|
||||||
import { streamText } from '~/lib/.server/llm/stream-text';
|
import { streamText } from '~/lib/.server/llm/stream-text';
|
||||||
import type { IProviderSetting, ProviderInfo } from '~/types/model';
|
import type { IProviderSetting, ProviderInfo } from '~/types/model';
|
||||||
import { generateText } from 'ai';
|
import { generateText } from 'ai';
|
||||||
import { getModelList, PROVIDER_LIST } from '~/utils/constants';
|
import { PROVIDER_LIST } from '~/utils/constants';
|
||||||
import { MAX_TOKENS } from '~/lib/.server/llm/constants';
|
import { MAX_TOKENS } from '~/lib/.server/llm/constants';
|
||||||
|
import { LLMManager } from '~/lib/modules/llm/manager';
|
||||||
|
import type { ModelInfo } from '~/lib/modules/llm/types';
|
||||||
|
import { getApiKeysFromCookie, getProviderSettingsFromCookie } from '~/lib/api/cookies';
|
||||||
|
|
||||||
export async function action(args: ActionFunctionArgs) {
|
export async function action(args: ActionFunctionArgs) {
|
||||||
return llmCallAction(args);
|
return llmCallAction(args);
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseCookies(cookieHeader: string) {
|
async function getModelList(options: {
|
||||||
const cookies: any = {};
|
apiKeys?: Record<string, string>;
|
||||||
|
providerSettings?: Record<string, IProviderSetting>;
|
||||||
// Split the cookie string by semicolons and spaces
|
serverEnv?: Record<string, string>;
|
||||||
const items = cookieHeader.split(';').map((cookie) => cookie.trim());
|
}) {
|
||||||
|
const llmManager = LLMManager.getInstance(import.meta.env);
|
||||||
items.forEach((item) => {
|
return llmManager.updateModelList(options);
|
||||||
const [name, ...rest] = item.split('=');
|
|
||||||
|
|
||||||
if (name && rest) {
|
|
||||||
// Decode the name and value, and join value parts in case it contains '='
|
|
||||||
const decodedName = decodeURIComponent(name.trim());
|
|
||||||
const decodedValue = decodeURIComponent(rest.join('=').trim());
|
|
||||||
cookies[decodedName] = decodedValue;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
return cookies;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
async function llmCallAction({ context, request }: ActionFunctionArgs) {
|
async function llmCallAction({ context, request }: ActionFunctionArgs) {
|
||||||
@ -58,12 +48,8 @@ async function llmCallAction({ context, request }: ActionFunctionArgs) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const cookieHeader = request.headers.get('Cookie');
|
const cookieHeader = request.headers.get('Cookie');
|
||||||
|
const apiKeys = getApiKeysFromCookie(cookieHeader);
|
||||||
// Parse the cookie's value (returns an object or null if no cookie exists)
|
const providerSettings = getProviderSettingsFromCookie(cookieHeader);
|
||||||
const apiKeys = JSON.parse(parseCookies(cookieHeader || '').apiKeys || '{}');
|
|
||||||
const providerSettings: Record<string, IProviderSetting> = JSON.parse(
|
|
||||||
parseCookies(cookieHeader || '').providers || '{}',
|
|
||||||
);
|
|
||||||
|
|
||||||
if (streamOutput) {
|
if (streamOutput) {
|
||||||
try {
|
try {
|
||||||
@ -105,8 +91,8 @@ async function llmCallAction({ context, request }: ActionFunctionArgs) {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
const MODEL_LIST = await getModelList({ apiKeys, providerSettings, serverEnv: context.cloudflare.env as any });
|
const models = await getModelList({ apiKeys, providerSettings, serverEnv: context.cloudflare.env as any });
|
||||||
const modelDetails = MODEL_LIST.find((m) => m.name === model);
|
const modelDetails = models.find((m: ModelInfo) => m.name === model);
|
||||||
|
|
||||||
if (!modelDetails) {
|
if (!modelDetails) {
|
||||||
throw new Error('Model not found');
|
throw new Error('Model not found');
|
||||||
|
|||||||
2
app/routes/api.models.$provider.ts
Normal file
2
app/routes/api.models.$provider.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
import { loader } from './api.models';
|
||||||
|
export { loader };
|
||||||
@ -1,6 +1,84 @@
|
|||||||
import { json } from '@remix-run/cloudflare';
|
import { json } from '@remix-run/cloudflare';
|
||||||
import { MODEL_LIST } from '~/utils/constants';
|
import { LLMManager } from '~/lib/modules/llm/manager';
|
||||||
|
import type { ModelInfo } from '~/lib/modules/llm/types';
|
||||||
|
import type { ProviderInfo } from '~/types/model';
|
||||||
|
import { getApiKeysFromCookie, getProviderSettingsFromCookie } from '~/lib/api/cookies';
|
||||||
|
|
||||||
export async function loader() {
|
interface ModelsResponse {
|
||||||
return json(MODEL_LIST);
|
modelList: ModelInfo[];
|
||||||
|
providers: ProviderInfo[];
|
||||||
|
defaultProvider: ProviderInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
let cachedProviders: ProviderInfo[] | null = null;
|
||||||
|
let cachedDefaultProvider: ProviderInfo | null = null;
|
||||||
|
|
||||||
|
function getProviderInfo(llmManager: LLMManager) {
|
||||||
|
if (!cachedProviders) {
|
||||||
|
cachedProviders = llmManager.getAllProviders().map((provider) => ({
|
||||||
|
name: provider.name,
|
||||||
|
staticModels: provider.staticModels,
|
||||||
|
getApiKeyLink: provider.getApiKeyLink,
|
||||||
|
labelForGetApiKey: provider.labelForGetApiKey,
|
||||||
|
icon: provider.icon,
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!cachedDefaultProvider) {
|
||||||
|
const defaultProvider = llmManager.getDefaultProvider();
|
||||||
|
cachedDefaultProvider = {
|
||||||
|
name: defaultProvider.name,
|
||||||
|
staticModels: defaultProvider.staticModels,
|
||||||
|
getApiKeyLink: defaultProvider.getApiKeyLink,
|
||||||
|
labelForGetApiKey: defaultProvider.labelForGetApiKey,
|
||||||
|
icon: defaultProvider.icon,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return { providers: cachedProviders, defaultProvider: cachedDefaultProvider };
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function loader({
|
||||||
|
request,
|
||||||
|
params,
|
||||||
|
}: {
|
||||||
|
request: Request;
|
||||||
|
params: { provider?: string };
|
||||||
|
}): Promise<Response> {
|
||||||
|
const llmManager = LLMManager.getInstance(import.meta.env);
|
||||||
|
|
||||||
|
// Get client side maintained API keys and provider settings from cookies
|
||||||
|
const cookieHeader = request.headers.get('Cookie');
|
||||||
|
const apiKeys = getApiKeysFromCookie(cookieHeader);
|
||||||
|
const providerSettings = getProviderSettingsFromCookie(cookieHeader);
|
||||||
|
|
||||||
|
const { providers, defaultProvider } = getProviderInfo(llmManager);
|
||||||
|
|
||||||
|
let modelList: ModelInfo[] = [];
|
||||||
|
|
||||||
|
if (params.provider) {
|
||||||
|
// Only update models for the specific provider
|
||||||
|
const provider = llmManager.getProvider(params.provider);
|
||||||
|
|
||||||
|
if (provider) {
|
||||||
|
const staticModels = provider.staticModels;
|
||||||
|
const dynamicModels = provider.getDynamicModels
|
||||||
|
? await provider.getDynamicModels(apiKeys, providerSettings, import.meta.env)
|
||||||
|
: [];
|
||||||
|
modelList = [...staticModels, ...dynamicModels];
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Update all models
|
||||||
|
modelList = await llmManager.updateModelList({
|
||||||
|
apiKeys,
|
||||||
|
providerSettings,
|
||||||
|
serverEnv: import.meta.env,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return json<ModelsResponse>({
|
||||||
|
modelList,
|
||||||
|
providers,
|
||||||
|
defaultProvider,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,7 +1,4 @@
|
|||||||
import type { IProviderSetting } from '~/types/model';
|
|
||||||
|
|
||||||
import { LLMManager } from '~/lib/modules/llm/manager';
|
import { LLMManager } from '~/lib/modules/llm/manager';
|
||||||
import type { ModelInfo } from '~/lib/modules/llm/types';
|
|
||||||
import type { Template } from '~/types/template';
|
import type { Template } from '~/types/template';
|
||||||
|
|
||||||
export const WORK_DIR_NAME = 'project';
|
export const WORK_DIR_NAME = 'project';
|
||||||
@ -17,9 +14,7 @@ const llmManager = LLMManager.getInstance(import.meta.env);
|
|||||||
export const PROVIDER_LIST = llmManager.getAllProviders();
|
export const PROVIDER_LIST = llmManager.getAllProviders();
|
||||||
export const DEFAULT_PROVIDER = llmManager.getDefaultProvider();
|
export const DEFAULT_PROVIDER = llmManager.getDefaultProvider();
|
||||||
|
|
||||||
let MODEL_LIST = llmManager.getModelList();
|
export const providerBaseUrlEnvKeys: Record<string, { baseUrlKey?: string; apiTokenKey?: string }> = {};
|
||||||
|
|
||||||
const providerBaseUrlEnvKeys: Record<string, { baseUrlKey?: string; apiTokenKey?: string }> = {};
|
|
||||||
PROVIDER_LIST.forEach((provider) => {
|
PROVIDER_LIST.forEach((provider) => {
|
||||||
providerBaseUrlEnvKeys[provider.name] = {
|
providerBaseUrlEnvKeys[provider.name] = {
|
||||||
baseUrlKey: provider.config.baseUrlKey,
|
baseUrlKey: provider.config.baseUrlKey,
|
||||||
@ -27,34 +22,6 @@ PROVIDER_LIST.forEach((provider) => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
// Export the getModelList function using the manager
|
|
||||||
export async function getModelList(options: {
|
|
||||||
apiKeys?: Record<string, string>;
|
|
||||||
providerSettings?: Record<string, IProviderSetting>;
|
|
||||||
serverEnv?: Record<string, string>;
|
|
||||||
}) {
|
|
||||||
return await llmManager.updateModelList(options);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function initializeModelList(options: {
|
|
||||||
env?: Record<string, string>;
|
|
||||||
providerSettings?: Record<string, IProviderSetting>;
|
|
||||||
apiKeys?: Record<string, string>;
|
|
||||||
}): Promise<ModelInfo[]> {
|
|
||||||
const { providerSettings, apiKeys, env } = options;
|
|
||||||
const list = await getModelList({
|
|
||||||
apiKeys,
|
|
||||||
providerSettings,
|
|
||||||
serverEnv: env,
|
|
||||||
});
|
|
||||||
MODEL_LIST = list || MODEL_LIST;
|
|
||||||
|
|
||||||
return list;
|
|
||||||
}
|
|
||||||
|
|
||||||
// initializeModelList({})
|
|
||||||
export { initializeModelList, providerBaseUrlEnvKeys, MODEL_LIST };
|
|
||||||
|
|
||||||
// starter Templates
|
// starter Templates
|
||||||
|
|
||||||
export const STARTER_TEMPLATES: Template[] = [
|
export const STARTER_TEMPLATES: Template[] = [
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user