Compare commits

..

1 Commits
0.2.0 ... main

Author SHA1 Message Date
b1ek 7316839d06
update llama model name 2024-10-24 10:46:33 +10:00
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ impl ToString for Model {
Self::Claude => String::from("claude-3-haiku-20240307"), Self::Claude => String::from("claude-3-haiku-20240307"),
Self::GPT3 => String::from("gpt-3.5-turbo-0125"), Self::GPT3 => String::from("gpt-3.5-turbo-0125"),
Self::Llama => String::from("meta-llama/Llama-3-70b-chat-hf"), Self::Llama => String::from("meta-llama/Meta-Llama-3.1-70B-Instruct-Turbo"),
Self::Mixtral => String::from("mistralai/Mixtral-8x7B-Instruct-v0.1"), Self::Mixtral => String::from("mistralai/Mixtral-8x7B-Instruct-v0.1"),
Self::GPT4OMini => String::from("gpt-4o-mini") Self::GPT4OMini => String::from("gpt-4o-mini")
} }