Compare commits

...

2 Commits

Author SHA1 Message Date
yisding 209d4cddd1 e2e stub 2024-04-28 18:06:15 -07:00
yisding 04c99208f1 llm/index exports 2024-04-28 17:20:26 -07:00
2 changed files with 12 additions and 2 deletions
@@ -1,3 +1,6 @@
import { OpenAI } from "./openai.js";
export class Anthropic extends OpenAI {}
export const ALL_AVAILABLE_ANTHROPIC_LEGACY_MODELS = {};
export const ALL_AVAILABLE_ANTHROPIC_MODELS = {};
export const ALL_AVAILABLE_V3_MODELS = {};
+9 -2
View File
@@ -1,5 +1,11 @@
export { Anthropic } from "./anthropic.js";
export {
ALL_AVAILABLE_ANTHROPIC_LEGACY_MODELS,
ALL_AVAILABLE_ANTHROPIC_MODELS,
ALL_AVAILABLE_V3_MODELS,
Anthropic,
} from "./anthropic.js";
export { FireworksLLM } from "./fireworks.js";
export { GEMINI_MODEL, Gemini } from "./gemini.js";
export { Groq } from "./groq.js";
export {
ALL_AVAILABLE_MISTRAL_MODELS,
@@ -10,12 +16,13 @@ export * from "./openai.js";
export { Portkey } from "./portkey.js";
export * from "./replicate_ai.js";
// Note: The type aliases for replicate are to simplify usage for Llama 2 (we're using replicate for Llama 2 support)
export { GEMINI_MODEL, Gemini } from "./gemini.js";
export {
ALL_AVAILABLE_REPLICATE_MODELS,
DeuceChatStrategy,
LlamaDeuce,
ReplicateChatStrategy,
ReplicateLLM,
ReplicateSession,
} from "./replicate_ai.js";
export { TogetherLLM } from "./together.js";
export * from "./types.js";