Metadata-Version: 2.3
Name: rishabh-ask-ai
Version: 1.0.0.post2
Summary: This is a python package which can return outputs given by ChatGPT using groq
Author: Rishabh Birthalia
Author-email: Rishabh Birthalia <rishabh14b@gmail.com>
Requires-Dist: groq
Requires-Dist: python-dotenv
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Ask AI 
## Features
* Uses ChatGPT to answer users questions
* Powered by groq module
* You can use ask function to use this library
## Usage
```python
# Import the ask function from the package
from rishabh-ask-ai import ask

# Use the ask function to send a query to AI
response = ask("Hello, what is your name?")
print(response)
```