@@ -72,31 +72,31 @@ impl KnowledgeBaseWithLogo {
72
72
}
73
73
}
74
74
75
- const CHATBOT_BRAINS : [ ChatbotBrain ; 4 ] = [
76
- ChatbotBrain :: new (
77
- "teknium/OpenHermes-2.5-Mistral-7B" ,
78
- "OpenHermes" ,
79
- "teknium/OpenHermes-2.5-Mistral-7B" ,
80
- "/dashboard/static/images/logos/openhermes.webp" ,
81
- ) ,
82
- ChatbotBrain :: new (
83
- "Gryphe/MythoMax-L2-13b" ,
84
- "MythoMax" ,
85
- "Gryphe/MythoMax-L2-13b" ,
86
- "/dashboard/static/images/logos/mythomax.webp" ,
87
- ) ,
75
+ const CHATBOT_BRAINS : [ ChatbotBrain ; 1 ] = [
76
+ // ChatbotBrain::new(
77
+ // "teknium/OpenHermes-2.5-Mistral-7B",
78
+ // "OpenHermes",
79
+ // "teknium/OpenHermes-2.5-Mistral-7B",
80
+ // "/dashboard/static/images/logos/openhermes.webp",
81
+ // ),
82
+ // ChatbotBrain::new(
83
+ // "Gryphe/MythoMax-L2-13b",
84
+ // "MythoMax",
85
+ // "Gryphe/MythoMax-L2-13b",
86
+ // "/dashboard/static/images/logos/mythomax.webp",
87
+ // ),
88
88
ChatbotBrain :: new (
89
89
"openai" ,
90
90
"OpenAI" ,
91
91
"ChatGPT" ,
92
92
"/dashboard/static/images/logos/openai.webp" ,
93
93
) ,
94
- ChatbotBrain :: new (
95
- "berkeley-nest/Starling-LM-7B-alpha" ,
96
- "Starling" ,
97
- "berkeley-nest/Starling-LM-7B-alpha" ,
98
- "/dashboard/static/images/logos/starling.webp" ,
99
- ) ,
94
+ // ChatbotBrain::new(
95
+ // "berkeley-nest/Starling-LM-7B-alpha",
96
+ // "Starling",
97
+ // "berkeley-nest/Starling-LM-7B-alpha",
98
+ // "/dashboard/static/images/logos/starling.webp",
99
+ // ),
100
100
] ;
101
101
102
102
struct ChatbotBrain {
@@ -125,7 +125,7 @@ impl ChatbotBrain {
125
125
#[ derive( TemplateOnce ) ]
126
126
#[ template( path = "chatbot/template.html" ) ]
127
127
pub struct Chatbot {
128
- brains : & ' static [ ChatbotBrain ; 4 ] ,
128
+ brains : & ' static [ ChatbotBrain ; 1 ] ,
129
129
example_questions : & ' static ExampleQuestions ,
130
130
knowledge_bases_with_logo : & ' static [ KnowledgeBaseWithLogo ; 4 ] ,
131
131
}
0 commit comments