🌐 AI搜索 & 代理 主页
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add llama 3.2 1b and 3b to model table
  • Loading branch information
chillenberger committed Oct 1, 2024
commit 6030833305b13f3958a3e5566263efb2e5e0c40f
18 changes: 16 additions & 2 deletions pgml-dashboard/src/components/tables/serverless_models/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use sailfish::TemplateOnce;
pub struct ServerlessModels {
style_type: String,
embedding_models: [Component; 4],
instruct_models: [Component; 6],
instruct_models: [Component; 8],
summarization_models: [Component; 1],
}

Expand Down Expand Up @@ -47,6 +47,20 @@ impl ServerlessModels {
])),
],
instruct_models: [
Component::from(Row::new(&[
"meta-llama/Llama-3.2-1B-Instruct".into(),
"1".into(),
"1".into(),
"128".into(),
"Lowest latency".into(),
])),
Component::from(Row::new(&[
"meta-llama/Llama-3.2-3B-Instruct".into(),
"3".into(),
"3".into(),
"128".into(),
"Low latency".into(),
])),
Component::from(Row::new(&[
"meta-llama/Meta-Llama-3.1-405B-Instruct".into(),
"405".into(),
Expand All @@ -73,7 +87,7 @@ impl ServerlessModels {
"3.8".into(),
"3.8".into(),
"128k".into(),
"Lowest latency".into(),
"Low latency".into(),
])),
Component::from(Row::new(&[
"mistralai/Mixtral-8x7B-Instruct-v0.1".into(),
Expand Down