Metadata-Version: 2.1
Name: Aihelper64
Version: 1.0.0
Summary: This is my first module, to help using OpenAi API
Home-page: https://github.com/artem228005/Aihelper
Author: Limonchik228005
Author-email: bad228005@gmail.com
Project-URL: Documentation, https://github.com/artem228005/Aihelper
Keywords: example python
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

This module will help you, to use module from OpenAi.

First, you need to write your API token from OpenAi with "aihelper.token('your token')
Then, you can write any message to ChatGpt 3-5. Use aihelper.message("your message"). Response will be in "chat_response".

Example of code:

import aihelper

aihelper.token("token")
aihelper.message(input(">>> "))
print(chat_response)
