Simple communication with YouChat (GPT-4) in python and CLI.
pip install youchat-py
If you use CLI - don't forget to install xvfb.
apt install xvfb
usage: youchat [-h] [-out_type OUT_TYPE] [-timeout TIMEOUT] MESSAGE
positional arguments:
MESSAGE Message to YouChat
options:
-h, --help show this help message and exit
-out_type OUT_TYPE, -ot OUT_TYPE
Output type (json/string)
-timeout TIMEOUT, -t TIMEOUT
Timeout to wait response
Use in CLI mode
youchat hello!
Returns: {"generated_text": "Hello! How can I assist you today?"}
youchat -out_type string "who are you"
Returns: I am YouBot, a large language model developed by You.com. ...
Note on zsh - you must use single quotes
youchat 'who are you?'
Use in module mode test_unit.py:
from youchat import you_message
print( you_message(text='Hello, World!', out_type="string") )
Returns: "Hello, World!" is a common phrase used in ...
If you often cannot get youchat response - try to update seleniumbase library pip install -U seleniumbase
- seleniumbase