Artin2009 commited on
Commit
cc0af63
1 Parent(s): 057150a

Update chain_app.py

Browse files
Files changed (1) hide show
  1. chain_app.py +808 -116
chain_app.py CHANGED
@@ -122,23 +122,93 @@ async def chat_profile():
122
 
123
  ]
124
  ),
125
- ]
126
  # # cl.ChatProfile(
127
  # # name='Image-Generation',
128
  # # markdown_description='Our image generation model, has a performance like midjourney',
129
  # # ),
130
- return [
131
  cl.ChatProfile(
132
  name="gpt4-o-mini",
133
  markdown_description="The best state of the art openai model",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  ),
135
  cl.ChatProfile(
136
  name="GPT-4",
137
  markdown_description="OpenAI's GPT-4 model",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  ),
139
  cl.ChatProfile(
140
  name="gpt-3.5-turbo",
141
  markdown_description="OpenAI's GPT-3.5 Turbo model",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
142
  ),
143
  # cl.ChatProfile(
144
  # name="GPT-3.5-turbo-0125",
@@ -147,6 +217,30 @@ async def chat_profile():
147
  cl.ChatProfile(
148
  name="gpt-3.5-turbo-1106",
149
  markdown_description="OpenAI's GPT-3.5 Turbo 1106 model",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  ),
151
  # # cl.ChatProfile(
152
  # # name="davinci-002",
@@ -156,129 +250,727 @@ async def chat_profile():
156
  name="TTS",
157
  markdown_description="OpenAI's Text-to-Speech model",
158
  ),
159
- ]
160
- # cl.ChatProfile(
161
- # name="Qwen2-57B",
162
- # markdown_description="Qwen second generation model with 57B parameters",
163
- # ),
164
- # cl.ChatProfile(
165
- # name="Qwen2-7B",
166
- # markdown_description="Qwen second generation model with 7B parameters",
167
- # ),
168
- # cl.ChatProfile(
169
- # name="Qwen2-1.5B",
170
- # markdown_description="Qwen second generation model with 1.5B parameters",
171
- # ),
172
- # cl.ChatProfile(
173
- # name="Qwen2-0.5B",
174
- # markdown_description="Qwen second generation model with 0.5B parameters",
175
- # ),
176
- # cl.ChatProfile(
177
- # name="Qwen1.5-110B",
178
- # markdown_description="Qwen first generation improved model with 110B parameters",
179
- # ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
180
  # # cl.ChatProfile(
181
  # # name="Qwen1.5-72B",
182
  # # markdown_description="Qwen first generation improved model with 72B parameters",
183
  # # ),
184
- # cl.ChatProfile(
185
- # name="Qwen1.5-32B",
186
- # markdown_description="Qwen first generation improved model with 32B parameters",
187
- # ),
188
- # cl.ChatProfile(
189
- # name="Qwen1.5-2.7B",
190
- # markdown_description="Qwen first generation improved model with 2.7B parameters",
191
- # ),
192
- # # cl.ChatProfile(
193
- # # name="Qwen-72B",
194
- # # markdown_description="Qwen first generation model with 72B parameters",
195
- # # ),
196
- # # cl.ChatProfile(
197
- # # name="Qwen-14B",
198
- # # markdown_description="Qwen first generation model with 14B parameters",
199
- # # ),
200
- # # cl.ChatProfile(
201
- # # name="Qwen-7B",
202
- # # markdown_description="Qwen first generation model with 7B parameters",
203
- # # ),
204
- # cl.ChatProfile(
205
- # name="Llama-3.1-405B",
206
- # markdown_description="Meta Open Source Model Llama with 405B parameters",
207
- # ),
208
- # cl.ChatProfile(
209
- # name="Llama-3.1-70B",
210
- # markdown_description="Meta Open Source Model Llama with 70B parameters",
211
- # ),
212
- # cl.ChatProfile(
213
- # name="Llama-3.1-8B",
214
- # markdown_description="Meta Open Source Model Llama with 8B parameters",
215
- # ),
216
- # cl.ChatProfile(
217
- # name="Llama-3-70B",
218
- # markdown_description="Meta Open Source model Llama-3 with 70B parameters",
219
- # ),
220
- # cl.ChatProfile(
221
- # name='Aya-35B',
222
- # markdown_description='Cohere open sourced AI model with 35B parameters'
223
- # ),
224
- # cl.ChatProfile(
225
- # name='Aya-23B',
226
- # markdown_description='Cohere open sourced AI model with 23B parameters'
227
- # ),
228
- # cl.ChatProfile(
229
- # name='Command-R-Plus',
230
- # markdown_description='Cohere open sourced AI model named Command R plus'
231
-
232
- # ),
233
- # cl.ChatProfile(
234
- # name='Command-R',
235
- # markdown_description='Cohere open sourced AI model named Command R'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
237
- # ),
238
- # cl.ChatProfile(
239
- # name='Command-Light',
240
- # markdown_description='Cohere open sourced AI model named Command R'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
 
242
- # ),
243
- # cl.ChatProfile(
244
- # name='Command-Light-Nightly',
245
- # markdown_description='Cohere open sourced AI model named Command R'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
246
 
247
- # ),
248
- # cl.ChatProfile(
249
- # name='Command-Nightly',
250
- # markdown_description='Cohere open sourced AI model named Command R'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
 
252
- # ),
253
- # cl.ChatProfile(
254
- # name='Command',
255
- # markdown_description='Cohere open sourced AI model named Command R'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
 
257
- # ),
258
- # cl.ChatProfile(
259
- # name="Llama-3-8B",
260
- # markdown_description="Meta Open Source model Llama-2 with 7B parameters",
261
- # ),
262
- # cl.ChatProfile(
263
- # name = "gemma2-9B",
264
- # markdown_description = 'Google Generation 2 Open Source LLM with 9B parameters'
265
- # ),
266
- # cl.ChatProfile(
267
- # name = "gemma-7B",
268
- # markdown_description = 'Google Generation 1 Open Source LLM with 7B parameters'
269
- # ),
270
- # cl.ChatProfile(
271
- # name="zephyr-7B",
272
- # markdown_description="Open Source model Zephyr with 7B parameters",
273
- # ),
274
- # cl.ChatProfile(
275
- # name='mistral-nemo-12B',
276
- # markdown_description='mistral open source LLM with 12B parameters'
277
- # ),
278
- # cl.ChatProfile(
279
- # name='mixtral-8x7B',
280
- # markdown_description = 'mistral open source LLM with 7B parameters'
281
- # ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  # # cl.ChatProfile(
283
  # # name="Toka-353M",
284
  # # markdown_description="PartAI Open Source model Toka with 353M parameters",
 
122
 
123
  ]
124
  ),
 
125
  # # cl.ChatProfile(
126
  # # name='Image-Generation',
127
  # # markdown_description='Our image generation model, has a performance like midjourney',
128
  # # ),
 
129
  cl.ChatProfile(
130
  name="gpt4-o-mini",
131
  markdown_description="The best state of the art openai model",
132
+ starters=[
133
+ cl.Starter(
134
+ label="Morning routine ideation",
135
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
136
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
137
+ ),
138
+
139
+ cl.Starter(
140
+ label="Explain superconductors",
141
+ message="Explain superconductors like I'm five years old.",
142
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
143
+ ),
144
+ cl.Starter(
145
+ label="Python script for daily email reports",
146
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
147
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
148
+ ),
149
+ cl.Starter(
150
+ label="Text inviting friend to wedding",
151
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
152
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
153
+ )
154
+
155
+ ]
156
  ),
157
  cl.ChatProfile(
158
  name="GPT-4",
159
  markdown_description="OpenAI's GPT-4 model",
160
+ starters=[
161
+ cl.Starter(
162
+ label="Morning routine ideation",
163
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
164
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
165
+ ),
166
+
167
+ cl.Starter(
168
+ label="Explain superconductors",
169
+ message="Explain superconductors like I'm five years old.",
170
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
171
+ ),
172
+ cl.Starter(
173
+ label="Python script for daily email reports",
174
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
175
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
176
+ ),
177
+ cl.Starter(
178
+ label="Text inviting friend to wedding",
179
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
180
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
181
+ )
182
+
183
+ ]
184
  ),
185
  cl.ChatProfile(
186
  name="gpt-3.5-turbo",
187
  markdown_description="OpenAI's GPT-3.5 Turbo model",
188
+ starters=[
189
+ cl.Starter(
190
+ label="Morning routine ideation",
191
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
192
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
193
+ ),
194
+
195
+ cl.Starter(
196
+ label="Explain superconductors",
197
+ message="Explain superconductors like I'm five years old.",
198
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
199
+ ),
200
+ cl.Starter(
201
+ label="Python script for daily email reports",
202
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
203
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
204
+ ),
205
+ cl.Starter(
206
+ label="Text inviting friend to wedding",
207
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
208
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
209
+ )
210
+
211
+ ]
212
  ),
213
  # cl.ChatProfile(
214
  # name="GPT-3.5-turbo-0125",
 
217
  cl.ChatProfile(
218
  name="gpt-3.5-turbo-1106",
219
  markdown_description="OpenAI's GPT-3.5 Turbo 1106 model",
220
+ starters=[
221
+ cl.Starter(
222
+ label="Morning routine ideation",
223
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
224
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
225
+ ),
226
+
227
+ cl.Starter(
228
+ label="Explain superconductors",
229
+ message="Explain superconductors like I'm five years old.",
230
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
231
+ ),
232
+ cl.Starter(
233
+ label="Python script for daily email reports",
234
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
235
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
236
+ ),
237
+ cl.Starter(
238
+ label="Text inviting friend to wedding",
239
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
240
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
241
+ )
242
+
243
+ ]
244
  ),
245
  # # cl.ChatProfile(
246
  # # name="davinci-002",
 
250
  name="TTS",
251
  markdown_description="OpenAI's Text-to-Speech model",
252
  ),
253
+ cl.ChatProfile(
254
+ name="Qwen2-57B",
255
+ markdown_description="Qwen second generation model with 57B parameters",
256
+ starters=[
257
+ cl.Starter(
258
+ label="Morning routine ideation",
259
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
260
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
261
+ ),
262
+
263
+ cl.Starter(
264
+ label="Explain superconductors",
265
+ message="Explain superconductors like I'm five years old.",
266
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
267
+ ),
268
+ cl.Starter(
269
+ label="Python script for daily email reports",
270
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
271
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
272
+ ),
273
+ cl.Starter(
274
+ label="Text inviting friend to wedding",
275
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
276
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
277
+ )
278
+
279
+ ]
280
+ ),
281
+ cl.ChatProfile(
282
+ name="Qwen2-7B",
283
+ markdown_description="Qwen second generation model with 7B parameters",
284
+ starters=[
285
+ cl.Starter(
286
+ label="Morning routine ideation",
287
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
288
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
289
+ ),
290
+
291
+ cl.Starter(
292
+ label="Explain superconductors",
293
+ message="Explain superconductors like I'm five years old.",
294
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
295
+ ),
296
+ cl.Starter(
297
+ label="Python script for daily email reports",
298
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
299
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
300
+ ),
301
+ cl.Starter(
302
+ label="Text inviting friend to wedding",
303
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
304
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
305
+ )
306
+
307
+ ]
308
+ ),
309
+ cl.ChatProfile(
310
+ name="Qwen2-1.5B",
311
+ markdown_description="Qwen second generation model with 1.5B parameters",
312
+ starters=[
313
+ cl.Starter(
314
+ label="Morning routine ideation",
315
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
316
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
317
+ ),
318
+
319
+ cl.Starter(
320
+ label="Explain superconductors",
321
+ message="Explain superconductors like I'm five years old.",
322
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
323
+ ),
324
+ cl.Starter(
325
+ label="Python script for daily email reports",
326
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
327
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
328
+ ),
329
+ cl.Starter(
330
+ label="Text inviting friend to wedding",
331
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
332
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
333
+ )
334
+
335
+ ]
336
+ ),
337
+ cl.ChatProfile(
338
+ name="Qwen2-0.5B",
339
+ markdown_description="Qwen second generation model with 0.5B parameters",
340
+ starters=[
341
+ cl.Starter(
342
+ label="Morning routine ideation",
343
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
344
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
345
+ ),
346
+
347
+ cl.Starter(
348
+ label="Explain superconductors",
349
+ message="Explain superconductors like I'm five years old.",
350
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
351
+ ),
352
+ cl.Starter(
353
+ label="Python script for daily email reports",
354
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
355
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
356
+ ),
357
+ cl.Starter(
358
+ label="Text inviting friend to wedding",
359
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
360
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
361
+ )
362
+
363
+ ]
364
+ ),
365
+ cl.ChatProfile(
366
+ name="Qwen1.5-110B",
367
+ markdown_description="Qwen first generation improved model with 110B parameters",
368
+ starters=[
369
+ cl.Starter(
370
+ label="Morning routine ideation",
371
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
372
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
373
+ ),
374
+
375
+ cl.Starter(
376
+ label="Explain superconductors",
377
+ message="Explain superconductors like I'm five years old.",
378
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
379
+ ),
380
+ cl.Starter(
381
+ label="Python script for daily email reports",
382
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
383
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
384
+ ),
385
+ cl.Starter(
386
+ label="Text inviting friend to wedding",
387
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
388
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
389
+ )
390
+
391
+ ]
392
+ ),
393
  # # cl.ChatProfile(
394
  # # name="Qwen1.5-72B",
395
  # # markdown_description="Qwen first generation improved model with 72B parameters",
396
  # # ),
397
+ cl.ChatProfile(
398
+ name="Qwen1.5-32B",
399
+ markdown_description="Qwen first generation improved model with 32B parameters",
400
+ starters=[
401
+ cl.Starter(
402
+ label="Morning routine ideation",
403
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
404
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
405
+ ),
406
+
407
+ cl.Starter(
408
+ label="Explain superconductors",
409
+ message="Explain superconductors like I'm five years old.",
410
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
411
+ ),
412
+ cl.Starter(
413
+ label="Python script for daily email reports",
414
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
415
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
416
+ ),
417
+ cl.Starter(
418
+ label="Text inviting friend to wedding",
419
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
420
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
421
+ )
422
+
423
+ ]
424
+ ),
425
+ cl.ChatProfile(
426
+ name="Qwen1.5-2.7B",
427
+ markdown_description="Qwen first generation improved model with 2.7B parameters",
428
+ starters=[
429
+ cl.Starter(
430
+ label="Morning routine ideation",
431
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
432
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
433
+ ),
434
+
435
+ cl.Starter(
436
+ label="Explain superconductors",
437
+ message="Explain superconductors like I'm five years old.",
438
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
439
+ ),
440
+ cl.Starter(
441
+ label="Python script for daily email reports",
442
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
443
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
444
+ ),
445
+ cl.Starter(
446
+ label="Text inviting friend to wedding",
447
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
448
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
449
+ )
450
+
451
+ ]
452
+ ),
453
+ # # cl.ChatProfile(
454
+ # # name="Qwen-72B",
455
+ # # markdown_description="Qwen first generation model with 72B parameters",
456
+ # # ),
457
+ # # cl.ChatProfile(
458
+ # # name="Qwen-14B",
459
+ # # markdown_description="Qwen first generation model with 14B parameters",
460
+ # # ),
461
+ # # cl.ChatProfile(
462
+ # # name="Qwen-7B",
463
+ # # markdown_description="Qwen first generation model with 7B parameters",
464
+ # # ),
465
+ cl.ChatProfile(
466
+ name="Llama-3.1-405B",
467
+ markdown_description="Meta Open Source Model Llama with 405B parameters",
468
+ starters=[
469
+ cl.Starter(
470
+ label="Morning routine ideation",
471
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
472
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
473
+ ),
474
+
475
+ cl.Starter(
476
+ label="Explain superconductors",
477
+ message="Explain superconductors like I'm five years old.",
478
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
479
+ ),
480
+ cl.Starter(
481
+ label="Python script for daily email reports",
482
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
483
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
484
+ ),
485
+ cl.Starter(
486
+ label="Text inviting friend to wedding",
487
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
488
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
489
+ )
490
+
491
+ ]
492
+ ),
493
+ cl.ChatProfile(
494
+ name="Llama-3.1-70B",
495
+ markdown_description="Meta Open Source Model Llama with 70B parameters",
496
+ starters=[
497
+ cl.Starter(
498
+ label="Morning routine ideation",
499
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
500
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
501
+ ),
502
+
503
+ cl.Starter(
504
+ label="Explain superconductors",
505
+ message="Explain superconductors like I'm five years old.",
506
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
507
+ ),
508
+ cl.Starter(
509
+ label="Python script for daily email reports",
510
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
511
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
512
+ ),
513
+ cl.Starter(
514
+ label="Text inviting friend to wedding",
515
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
516
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
517
+ )
518
+
519
+ ]
520
+ ),
521
+ cl.ChatProfile(
522
+ name="Llama-3.1-8B",
523
+ markdown_description="Meta Open Source Model Llama with 8B parameters",
524
+ starters=[
525
+ cl.Starter(
526
+ label="Morning routine ideation",
527
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
528
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
529
+ ),
530
+
531
+ cl.Starter(
532
+ label="Explain superconductors",
533
+ message="Explain superconductors like I'm five years old.",
534
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
535
+ ),
536
+ cl.Starter(
537
+ label="Python script for daily email reports",
538
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
539
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
540
+ ),
541
+ cl.Starter(
542
+ label="Text inviting friend to wedding",
543
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
544
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
545
+ )
546
+
547
+ ]
548
+ ),
549
+ cl.ChatProfile(
550
+ name="Llama-3-70B",
551
+ markdown_description="Meta Open Source model Llama-3 with 70B parameters",
552
+ starters=[
553
+ cl.Starter(
554
+ label="Morning routine ideation",
555
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
556
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
557
+ ),
558
+
559
+ cl.Starter(
560
+ label="Explain superconductors",
561
+ message="Explain superconductors like I'm five years old.",
562
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
563
+ ),
564
+ cl.Starter(
565
+ label="Python script for daily email reports",
566
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
567
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
568
+ ),
569
+ cl.Starter(
570
+ label="Text inviting friend to wedding",
571
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
572
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
573
+ )
574
+
575
+ ]
576
+ ),
577
+ cl.ChatProfile(
578
+ name='Aya-35B',
579
+ markdown_description='Cohere open sourced AI model with 35B parameters',
580
+ starters=[
581
+ cl.Starter(
582
+ label="Morning routine ideation",
583
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
584
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
585
+ ),
586
+
587
+ cl.Starter(
588
+ label="Explain superconductors",
589
+ message="Explain superconductors like I'm five years old.",
590
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
591
+ ),
592
+ cl.Starter(
593
+ label="Python script for daily email reports",
594
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
595
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
596
+ ),
597
+ cl.Starter(
598
+ label="Text inviting friend to wedding",
599
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
600
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
601
+ )
602
+
603
+ ]
604
+ ),
605
+ cl.ChatProfile(
606
+ name='Aya-23B',
607
+ markdown_description='Cohere open sourced AI model with 23B parameters',
608
+ starters=[
609
+ cl.Starter(
610
+ label="Morning routine ideation",
611
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
612
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
613
+ ),
614
+
615
+ cl.Starter(
616
+ label="Explain superconductors",
617
+ message="Explain superconductors like I'm five years old.",
618
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
619
+ ),
620
+ cl.Starter(
621
+ label="Python script for daily email reports",
622
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
623
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
624
+ ),
625
+ cl.Starter(
626
+ label="Text inviting friend to wedding",
627
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
628
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
629
+ )
630
+
631
+ ]
632
+ ),
633
+ cl.ChatProfile(
634
+ name='Command-R-Plus',
635
+ markdown_description='Cohere open sourced AI model named Command R plus',
636
+ starters=[
637
+ cl.Starter(
638
+ label="Morning routine ideation",
639
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
640
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
641
+ ),
642
+
643
+ cl.Starter(
644
+ label="Explain superconductors",
645
+ message="Explain superconductors like I'm five years old.",
646
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
647
+ ),
648
+ cl.Starter(
649
+ label="Python script for daily email reports",
650
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
651
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
652
+ ),
653
+ cl.Starter(
654
+ label="Text inviting friend to wedding",
655
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
656
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
657
+ )
658
+
659
+ ]
660
+ ),
661
+ cl.ChatProfile(
662
+ name='Command-R',
663
+ markdown_description='Cohere open sourced AI model named Command R',
664
+ starters=[
665
+ cl.Starter(
666
+ label="Morning routine ideation",
667
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
668
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
669
+ ),
670
+
671
+ cl.Starter(
672
+ label="Explain superconductors",
673
+ message="Explain superconductors like I'm five years old.",
674
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
675
+ ),
676
+ cl.Starter(
677
+ label="Python script for daily email reports",
678
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
679
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
680
+ ),
681
+ cl.Starter(
682
+ label="Text inviting friend to wedding",
683
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
684
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
685
+ )
686
+
687
+ ]
688
 
689
+ ),
690
+ cl.ChatProfile(
691
+ name='Command-Light',
692
+ markdown_description='Cohere open sourced AI model named Command R',
693
+ starters=[
694
+ cl.Starter(
695
+ label="Morning routine ideation",
696
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
697
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
698
+ ),
699
+
700
+ cl.Starter(
701
+ label="Explain superconductors",
702
+ message="Explain superconductors like I'm five years old.",
703
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
704
+ ),
705
+ cl.Starter(
706
+ label="Python script for daily email reports",
707
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
708
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
709
+ ),
710
+ cl.Starter(
711
+ label="Text inviting friend to wedding",
712
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
713
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
714
+ )
715
+
716
+ ]
717
 
718
+ ),
719
+ cl.ChatProfile(
720
+ name='Command-Light-Nightly',
721
+ markdown_description='Cohere open sourced AI model named Command R',
722
+ starters=[
723
+ cl.Starter(
724
+ label="Morning routine ideation",
725
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
726
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
727
+ ),
728
+
729
+ cl.Starter(
730
+ label="Explain superconductors",
731
+ message="Explain superconductors like I'm five years old.",
732
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
733
+ ),
734
+ cl.Starter(
735
+ label="Python script for daily email reports",
736
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
737
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
738
+ ),
739
+ cl.Starter(
740
+ label="Text inviting friend to wedding",
741
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
742
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
743
+ )
744
+
745
+ ]
746
 
747
+ ),
748
+ cl.ChatProfile(
749
+ name='Command-Nightly',
750
+ markdown_description='Cohere open sourced AI model named Command R',
751
+ starters=[
752
+ cl.Starter(
753
+ label="Morning routine ideation",
754
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
755
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
756
+ ),
757
+
758
+ cl.Starter(
759
+ label="Explain superconductors",
760
+ message="Explain superconductors like I'm five years old.",
761
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
762
+ ),
763
+ cl.Starter(
764
+ label="Python script for daily email reports",
765
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
766
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
767
+ ),
768
+ cl.Starter(
769
+ label="Text inviting friend to wedding",
770
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
771
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
772
+ )
773
+
774
+ ]
775
 
776
+ ),
777
+ cl.ChatProfile(
778
+ name='Command',
779
+ markdown_description='Cohere open sourced AI model named Command R',
780
+ starters=[
781
+ cl.Starter(
782
+ label="Morning routine ideation",
783
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
784
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
785
+ ),
786
+
787
+ cl.Starter(
788
+ label="Explain superconductors",
789
+ message="Explain superconductors like I'm five years old.",
790
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
791
+ ),
792
+ cl.Starter(
793
+ label="Python script for daily email reports",
794
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
795
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
796
+ ),
797
+ cl.Starter(
798
+ label="Text inviting friend to wedding",
799
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
800
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
801
+ )
802
+
803
+ ]
804
 
805
+ ),
806
+ cl.ChatProfile(
807
+ name="Llama-3-8B",
808
+ markdown_description="Meta Open Source model Llama-2 with 7B parameters",
809
+ starters=[
810
+ cl.Starter(
811
+ label="Morning routine ideation",
812
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
813
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
814
+ ),
815
+
816
+ cl.Starter(
817
+ label="Explain superconductors",
818
+ message="Explain superconductors like I'm five years old.",
819
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
820
+ ),
821
+ cl.Starter(
822
+ label="Python script for daily email reports",
823
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
824
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
825
+ ),
826
+ cl.Starter(
827
+ label="Text inviting friend to wedding",
828
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
829
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
830
+ )
831
+
832
+ ]
833
+ ),
834
+ cl.ChatProfile(
835
+ name = "gemma2-9B",
836
+ markdown_description = 'Google Generation 2 Open Source LLM with 9B parameters',
837
+ starters=[
838
+ cl.Starter(
839
+ label="Morning routine ideation",
840
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
841
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
842
+ ),
843
+
844
+ cl.Starter(
845
+ label="Explain superconductors",
846
+ message="Explain superconductors like I'm five years old.",
847
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
848
+ ),
849
+ cl.Starter(
850
+ label="Python script for daily email reports",
851
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
852
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
853
+ ),
854
+ cl.Starter(
855
+ label="Text inviting friend to wedding",
856
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
857
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
858
+ )
859
+
860
+ ]
861
+ ),
862
+ cl.ChatProfile(
863
+ name = "gemma-7B",
864
+ markdown_description = 'Google Generation 1 Open Source LLM with 7B parameters',
865
+ starters=[
866
+ cl.Starter(
867
+ label="Morning routine ideation",
868
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
869
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
870
+ ),
871
+
872
+ cl.Starter(
873
+ label="Explain superconductors",
874
+ message="Explain superconductors like I'm five years old.",
875
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
876
+ ),
877
+ cl.Starter(
878
+ label="Python script for daily email reports",
879
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
880
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
881
+ ),
882
+ cl.Starter(
883
+ label="Text inviting friend to wedding",
884
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
885
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
886
+ )
887
+
888
+ ]
889
+ ),
890
+ cl.ChatProfile(
891
+ name="zephyr-7B",
892
+ markdown_description="Open Source model Zephyr with 7B parameters",
893
+ starters=[
894
+ cl.Starter(
895
+ label="Morning routine ideation",
896
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
897
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
898
+ ),
899
+
900
+ cl.Starter(
901
+ label="Explain superconductors",
902
+ message="Explain superconductors like I'm five years old.",
903
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
904
+ ),
905
+ cl.Starter(
906
+ label="Python script for daily email reports",
907
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
908
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
909
+ ),
910
+ cl.Starter(
911
+ label="Text inviting friend to wedding",
912
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
913
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
914
+ )
915
+
916
+ ]
917
+ ),
918
+ cl.ChatProfile(
919
+ name='mistral-nemo-12B',
920
+ markdown_description='mistral open source LLM with 12B parameters',
921
+ starters=[
922
+ cl.Starter(
923
+ label="Morning routine ideation",
924
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
925
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
926
+ ),
927
+
928
+ cl.Starter(
929
+ label="Explain superconductors",
930
+ message="Explain superconductors like I'm five years old.",
931
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
932
+ ),
933
+ cl.Starter(
934
+ label="Python script for daily email reports",
935
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
936
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
937
+ ),
938
+ cl.Starter(
939
+ label="Text inviting friend to wedding",
940
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
941
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
942
+ )
943
+
944
+ ]
945
+ ),
946
+ cl.ChatProfile(
947
+ name='mixtral-8x7B',
948
+ markdown_description = 'mistral open source LLM with 7B parameters',
949
+ starters=[
950
+ cl.Starter(
951
+ label="Morning routine ideation",
952
+ message="Can you help me create a personalized morning routine that would help increase my productivity throughout the day? Start by asking me about my current habits and what activities energize me in the morning.",
953
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/idea.svg",
954
+ ),
955
+
956
+ cl.Starter(
957
+ label="Explain superconductors",
958
+ message="Explain superconductors like I'm five years old.",
959
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/learn.svg",
960
+ ),
961
+ cl.Starter(
962
+ label="Python script for daily email reports",
963
+ message="Write a script to automate sending daily email reports in Python, and walk me through how I would set it up.",
964
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/terminal.svg",
965
+ ),
966
+ cl.Starter(
967
+ label="Text inviting friend to wedding",
968
+ message="Write a text asking a friend to be my plus-one at a wedding next month. I want to keep it super short and casual, and offer an out.",
969
+ icon="https://chainlit-rag-copilot-r2xd.onrender.com/public/write.svg",
970
+ )
971
+
972
+ ]
973
+ ),
974
  # # cl.ChatProfile(
975
  # # name="Toka-353M",
976
  # # markdown_description="PartAI Open Source model Toka with 353M parameters",