Rename the script to cmm and fix installation

This commit is contained in:
Oleksandr Kozachuk
2023-04-07 15:42:24 +02:00
parent a9dbf87a76
commit 0470109434
5 changed files with 65 additions and 67 deletions
+7 -7
View File
@@ -26,7 +26,7 @@ answer: |-
## Usage
```
python main.py [-h] [-p PRINT | -q QUESTION | -D | -d] [-c CONFIG] [-m MAX_TOKENS] [-T TEMPERATURE] [-M MODEL] [-n NUMBER] [-t [TAGS [TAGS ...]]] [-e [EXTAGS [EXTAGS ...]]] [-o [OTAGS [OTAGS ...]]]
cmm [-h] [-p PRINT | -q QUESTION | -D | -d] [-c CONFIG] [-m MAX_TOKENS] [-T TEMPERATURE] [-M MODEL] [-n NUMBER] [-t [TAGS [TAGS ...]]] [-e [EXTAGS [EXTAGS ...]]] [-o [OTAGS [OTAGS ...]]]
```
### Arguments
@@ -49,37 +49,37 @@ answer: |-
1. Print the contents of a YAML file:
```
python main.py -p example.yaml
cmm -p example.yaml
```
2. Ask a question:
```
python main.py -q "What is the meaning of life?" -t philosophy -e religion
cmm -q "What is the meaning of life?" -t philosophy -e religion
```
3. Display the chat history as a Python structure:
```
python main.py -D
cmm -D
```
4. Display the chat history as readable text:
```
python main.py -d
cmm -d
```
5. Filter chat history by tags:
```
python main.py -d -t tag1 tag2
cmm -d -t tag1 tag2
```
6. Exclude chat history by tags:
```
python main.py -d -e tag3 tag4
cmm -d -e tag3 tag4
```
## Configuration