File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
pgml-dashboard/src/components/tables/serverless_models Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use sailfish::TemplateOnce;
88pub struct ServerlessModels {
99 style_type : String ,
1010 embedding_models : [ Component ; 4 ] ,
11- instruct_models : [ Component ; 6 ] ,
11+ instruct_models : [ Component ; 8 ] ,
1212 summarization_models : [ Component ; 1 ] ,
1313}
1414
@@ -47,6 +47,20 @@ impl ServerlessModels {
4747 ] ) ) ,
4848 ] ,
4949 instruct_models : [
50+ Component :: from ( Row :: new ( & [
51+ "meta-llama/Llama-3.2-1B-Instruct" . into ( ) ,
52+ "1" . into ( ) ,
53+ "1" . into ( ) ,
54+ "128" . into ( ) ,
55+ "Lowest latency" . into ( ) ,
56+ ] ) ) ,
57+ Component :: from ( Row :: new ( & [
58+ "meta-llama/Llama-3.2-3B-Instruct" . into ( ) ,
59+ "3" . into ( ) ,
60+ "3" . into ( ) ,
61+ "128" . into ( ) ,
62+ "Low latency" . into ( ) ,
63+ ] ) ) ,
5064 Component :: from ( Row :: new ( & [
5165 "meta-llama/Meta-Llama-3.1-405B-Instruct" . into ( ) ,
5266 "405" . into ( ) ,
@@ -73,7 +87,7 @@ impl ServerlessModels {
7387 "3.8" . into ( ) ,
7488 "3.8" . into ( ) ,
7589 "128k" . into ( ) ,
76- "Lowest latency" . into ( ) ,
90+ "Low latency" . into ( ) ,
7791 ] ) ) ,
7892 Component :: from ( Row :: new ( & [
7993 "mistralai/Mixtral-8x7B-Instruct-v0.1" . into ( ) ,
You can’t perform that action at this time.
0 commit comments