CineAI commited on
Commit
d3da264
1 Parent(s): ebd369c

Update command/utils/form_documentation.py

Browse files
Files changed (1) hide show
  1. command/utils/form_documentation.py +16 -11
command/utils/form_documentation.py CHANGED
@@ -3,23 +3,28 @@ import logging
3
 
4
  from typing import Optional
5
 
6
- NAME = 'Chelsea_documentation.txt'
7
-
8
  TEMPLATE = """
9
- Documentation.
10
-
11
- A complete list of commands that are designed to facilitate the use of the voice assistant (Chelsea).
12
  The complete list consists of no more than 100 commands written in a txt file.
13
  The list of commands will be updated as the assistant is developed.
14
- The first version of the programme (Arctic Monkeys) contains a total of 5 commands.
15
- They are divided into categories: finance, main, agents, RAG.
16
 
17
  The list of commands and their use.
18
 
19
- Command documentation: the user downloads a text file that describes the commands in detail.
20
- The information on how to use the very first and main command will be announced during the first use.
21
- The following list of voice commands in English is available for calling the command: "Download commands", "download commands", "load commands", "boot commands", "install commands", "commands", "load", "boot", "download", "install".
22
- In Ukrainian: "Завантаж команди", "Скачай команди", "Загрузи команди", "Завантаж", "Скачай", "Загрузи", "команди".
 
 
 
 
 
 
 
 
 
 
23
  """
24
 
25
 
 
3
 
4
  from typing import Optional
5
 
 
 
6
  TEMPLATE = """
7
+ A complete list of commands that are designed to facilitate the use of the voice assistant Chelsea.
 
 
8
  The complete list consists of no more than 100 commands written in a txt file.
9
  The list of commands will be updated as the assistant is developed.
10
+ The first version of the programme (Arctic Monkeys) contains a total of 6 commands.
 
11
 
12
  The list of commands and their use.
13
 
14
+ documentation command: first used to inform you how you able to interact with assistant. To call this command just say Documentation in english or
15
+ Документація in Ukrainian. Note you can use assistant without those commands, however for getting more advance expirience i strongly recommend use them.
16
+
17
+ bmac command: Support author on Buy Me a Coffee. To activate this command you can spell in english Buy Me A Coffee, BMAC, Coffee, Pay the ghost and
18
+ in Ukrainian Кава, Заплати примарі.
19
+
20
+ translate command: Use for translating speech in language which you choice. Commands to use it in english is Translate and in Ukrainian is Переклад.
21
+
22
+ change model command: You able to choose model using hugging face api (hf) or local model using Llama. List of models for hf are: Mistaril and Tinyllama and for lc: Phi 3 and TinyLlama either.
23
+ To call command use in english Change model and in Ukrainian Змінити модель.
24
+
25
+ yes command: Command to confirm your consent. To call command use in english Yes, Yeah, Yep and in Ukrainian Так, Ага.
26
+
27
+ no command: Command to confirm your disagreement. To call command use in english No, Nah and in Ukrainian Ні, Ніт, Ніц.
28
  """
29
 
30