mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2026-01-12 08:55:48 +00:00
116 lines
2.9 KiB
TypeScript
116 lines
2.9 KiB
TypeScript
import { UIConfigField } from '@/lib/config/types';
|
|
import { getConfiguredModelProviderById } from '@/lib/config/serverRegistry';
|
|
import { Model, ModelList, ProviderMetadata } from '../../types';
|
|
import BaseEmbedding from '../../base/embedding';
|
|
import BaseModelProvider from '../../base/provider';
|
|
import BaseLLM from '../../base/llm';
|
|
import AnthropicLLM from './anthropicLLM';
|
|
|
|
interface AnthropicConfig {
|
|
apiKey: string;
|
|
}
|
|
|
|
const providerConfigFields: UIConfigField[] = [
|
|
{
|
|
type: 'password',
|
|
name: 'API Key',
|
|
key: 'apiKey',
|
|
description: 'Your Anthropic API key',
|
|
required: true,
|
|
placeholder: 'Anthropic API Key',
|
|
env: 'ANTHROPIC_API_KEY',
|
|
scope: 'server',
|
|
},
|
|
];
|
|
|
|
class AnthropicProvider extends BaseModelProvider<AnthropicConfig> {
|
|
constructor(id: string, name: string, config: AnthropicConfig) {
|
|
super(id, name, config);
|
|
}
|
|
|
|
async getDefaultModels(): Promise<ModelList> {
|
|
const res = await fetch('https://api.anthropic.com/v1/models?limit=999', {
|
|
method: 'GET',
|
|
headers: {
|
|
'x-api-key': this.config.apiKey,
|
|
'anthropic-version': '2023-06-01',
|
|
'Content-type': 'application/json',
|
|
},
|
|
});
|
|
|
|
if (!res.ok) {
|
|
throw new Error(`Failed to fetch Anthropic models: ${res.statusText}`);
|
|
}
|
|
|
|
const data = (await res.json()).data;
|
|
|
|
const models: Model[] = data.map((m: any) => {
|
|
return {
|
|
key: m.id,
|
|
name: m.display_name,
|
|
};
|
|
});
|
|
|
|
return {
|
|
embedding: [],
|
|
chat: models,
|
|
};
|
|
}
|
|
|
|
async getModelList(): Promise<ModelList> {
|
|
const defaultModels = await this.getDefaultModels();
|
|
const configProvider = getConfiguredModelProviderById(this.id)!;
|
|
|
|
return {
|
|
embedding: [],
|
|
chat: [...defaultModels.chat, ...configProvider.chatModels],
|
|
};
|
|
}
|
|
|
|
async loadChatModel(key: string): Promise<BaseLLM<any>> {
|
|
const modelList = await this.getModelList();
|
|
|
|
const exists = modelList.chat.find((m) => m.key === key);
|
|
|
|
if (!exists) {
|
|
throw new Error(
|
|
'Error Loading Anthropic Chat Model. Invalid Model Selected',
|
|
);
|
|
}
|
|
|
|
return new AnthropicLLM({
|
|
apiKey: this.config.apiKey,
|
|
model: key,
|
|
baseURL: 'https://api.anthropic.com/v1',
|
|
});
|
|
}
|
|
|
|
async loadEmbeddingModel(key: string): Promise<BaseEmbedding<any>> {
|
|
throw new Error('Anthropic provider does not support embedding models.');
|
|
}
|
|
|
|
static parseAndValidate(raw: any): AnthropicConfig {
|
|
if (!raw || typeof raw !== 'object')
|
|
throw new Error('Invalid config provided. Expected object');
|
|
if (!raw.apiKey)
|
|
throw new Error('Invalid config provided. API key must be provided');
|
|
|
|
return {
|
|
apiKey: String(raw.apiKey),
|
|
};
|
|
}
|
|
|
|
static getProviderConfigFields(): UIConfigField[] {
|
|
return providerConfigFields;
|
|
}
|
|
|
|
static getProviderMetadata(): ProviderMetadata {
|
|
return {
|
|
key: 'anthropic',
|
|
name: 'Anthropic',
|
|
};
|
|
}
|
|
}
|
|
|
|
export default AnthropicProvider;
|