@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
38 lines (32 loc) • 1.12 kB
text/typescript
import { createHeaderWithAuth } from '@/services/_auth';
import { useUserStore } from '@/store/user';
import { modelConfigSelectors } from '@/store/user/selectors';
import { ChatModelCard } from '@/types/llm';
import { API_ENDPOINTS } from './_url';
import { initializeWithClientStore } from './chat';
class ModelsService {
getChatModels = async (provider: string): Promise<ChatModelCard[] | undefined> => {
const headers = await createHeaderWithAuth({
headers: { 'Content-Type': 'application/json' },
provider,
});
try {
/**
* Use browser agent runtime
*/
const enableFetchOnClient = modelConfigSelectors.isProviderFetchOnClient(provider)(
useUserStore.getState(),
);
if (enableFetchOnClient) {
const agentRuntime = await initializeWithClientStore(provider, {});
return agentRuntime.models();
}
const res = await fetch(API_ENDPOINTS.chatModels(provider), { headers });
if (!res.ok) return;
return res.json();
} catch {
return;
}
};
}
export const modelsService = new ModelsService();