Skip to content

Commit

Permalink
feat: added llama and llama-lite models
Browse files Browse the repository at this point in the history
  • Loading branch information
amnid committed Jan 8, 2025
1 parent b9676e6 commit ff555dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions models.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ var (
YandexGPT4ModelLite = yandexGPTModel{modelName: "yandexgpt-lite/rc"}
// Yandex GPT Pro 32k 4th generation
YandexGPT4Model32k = yandexGPTModel{modelName: "yandexgpt-32k/rc"}
// Llama Lite 3rd generation
LLAMALite = yandexGPTModel{modelName: "llama-lite/latest"}
// Llama 3rd generation
LLAMAL3 = yandexGPTModel{modelName: "llama/latest"}
)

type yandexGPTModel struct {
Expand Down

0 comments on commit ff555dc

Please sign in to comment.