initial setup

This commit is contained in:
Grey_D 2023-02-27 14:34:44 +08:00
parent 40a0dbb7d3
commit c09f6bf016
2 changed files with 8 additions and 0 deletions

5
example_chatgpt_api.py Normal file
View File

@ -0,0 +1,5 @@
from chatgpt_wrapper import ChatGPT
bot = ChatGPT()
response = bot.ask("Hello, world!")
print(response) # prints the response from chatGPT

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
requests
pyyaml
playwright==1.28.0