Skip to content

Commit

Permalink
feat: add more llm models (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodonguyen authored Apr 26, 2024
1 parent 59c86ed commit 7904505
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/llm/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const DISCORD_MESSAGE_MAX_CHARACTERS = 2000;
const QUESTION_CUT_OFF_LENGTH = 150;
const RESERVED_LENGTH = 50; // for other additional strings. E.g. number `(1/4)`, `Q: `, `A: `, etc.

const SUPPORTED_MODELS = ['gpt-3.5-turbo', 'gpt-4', 'phi', 'tinydolphin'] as const;
const SUPPORTED_MODELS = ['gpt-3.5-turbo', 'gpt-4', 'phi', 'phỉ', 'tinydolphin', 'mistral', 'mixtral', 'llama3', 'llama3-70b'] as const;
type SupportedModel = (typeof SUPPORTED_MODELS)[number];
export const SUPPORTED_MODELS_MAP = SUPPORTED_MODELS.map((model) => ({
name: model,
Expand Down

0 comments on commit 7904505

Please sign in to comment.