We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28185c5 commit 6dc8ef1Copy full SHA for 6dc8ef1
src/config.rs
@@ -5,10 +5,15 @@ use serde::{Deserialize, Serialize};
5
6
#[derive(Debug, Clone, Serialize, Deserialize)]
7
pub enum Model {
8
+ // outdated
9
Claude12,
10
GPT35,
11
+
12
+ // current
13
Claude,
14
GPT3,
15
+ Llama,
16
+ Mixtral
17
}
18
19
impl ToString for Model {
@@ -19,6 +24,8 @@ impl ToString for Model {
24
20
25
Self::Claude => String::from("claude-3-haiku-20240307"),
21
26
Self::GPT3 => String::from("gpt-3.5-turbo-0125"),
27
+ Self::Llama => String::from("meta-llama/Llama-3-70b-chat-hf"),
28
+ Self::Mixtral => String::from("mistralai/Mixtral-8x7B-Instruct-v0.1")
22
29
23
30
31
0 commit comments