Skip to content

Commit

Permalink
Merge pull request #16 from erhant/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
andthattoo authored Sep 16, 2024
2 parents 31b6da6 + de0a48b commit 322a234
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/program/models.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ pub enum Model {
/// [Google's Gemma2 model](https://ollama.com/library/gemma2), 9B parameters
#[serde(rename = "gemma2:9b-instruct-q8_0")]
Gemma2_9B,
/// [Google's Gemma2 model](https://ollama.com/library/gemma2), 9B parameters, fp16
#[serde(rename = "9b-instruct-fp16")]
/// [Google's Gemma2 model](https://ollama.com/library/gemma2:9b-instruct-fp16), 9B parameters, fp16
#[serde(rename = "gemma2:9b-instruct-fp16")]
Gemma2_9BFp16,
/// [Meta's Llama3.1 model](https://ollama.com/library/llama3.1:latest), 8B parameters
#[serde(rename = "llama3.1:latest")]
Expand All @@ -59,10 +59,10 @@ pub enum Model {
/// [OpenAI's GPT-4o mini model](https://platform.openai.com/docs/models/gpt-4o-mini)
#[serde(rename = "gpt-4o-mini")]
GPT4oMini,
/// [OpenAI's o1 mini model](https://platform.openai.com/docs/models/o1-mini)
/// [OpenAI's o1 mini model](https://platform.openai.com/docs/models/o1)
#[serde(rename = "o1-mini")]
O1Mini,
/// [OpenAI's GPT-3.5 Turbo model](https://platform.openai.com/docs/models/gpt-3.5-turbo)
/// [OpenAI's o1 preview model](https://platform.openai.com/docs/models/o1)
#[serde(rename = "o1-preview")]
O1Preview,
}
Expand Down

0 comments on commit 322a234

Please sign in to comment.