librechat-data-provider 0.7.52 → 0.7.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react-query/index.es.js +1 -1
- package/dist/react-query/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/config.ts +4 -1
package/package.json
CHANGED
package/src/config.ts
CHANGED
|
@@ -550,6 +550,7 @@ export enum KnownEndpoints {
|
|
|
550
550
|
shuttleai = 'shuttleai',
|
|
551
551
|
'together.ai' = 'together.ai',
|
|
552
552
|
unify = 'unify',
|
|
553
|
+
xai = 'xai',
|
|
553
554
|
}
|
|
554
555
|
|
|
555
556
|
export enum FetchTokenConfig {
|
|
@@ -584,7 +585,8 @@ export const alternateName = {
|
|
|
584
585
|
[EModelEndpoint.anthropic]: 'Anthropic',
|
|
585
586
|
[EModelEndpoint.custom]: 'Custom',
|
|
586
587
|
[EModelEndpoint.bedrock]: 'AWS Bedrock',
|
|
587
|
-
ollama: 'Ollama',
|
|
588
|
+
[KnownEndpoints.ollama]: 'Ollama',
|
|
589
|
+
[KnownEndpoints.xai]: 'xAI',
|
|
588
590
|
};
|
|
589
591
|
|
|
590
592
|
const sharedOpenAIModels = [
|
|
@@ -608,6 +610,7 @@ const sharedOpenAIModels = [
|
|
|
608
610
|
];
|
|
609
611
|
|
|
610
612
|
const sharedAnthropicModels = [
|
|
613
|
+
'claude-3-5-haiku-20241022',
|
|
611
614
|
'claude-3-5-sonnet-20241022',
|
|
612
615
|
'claude-3-5-sonnet-20240620',
|
|
613
616
|
'claude-3-5-sonnet-latest',
|