https://github.com/codewithswastik/intellichat
A convenient wrapper for OpenAI's Chat Completion API.
https://github.com/codewithswastik/intellichat
Last synced: about 1 year ago
JSON representation
A convenient wrapper for OpenAI's Chat Completion API.
- Host: GitHub
- URL: https://github.com/codewithswastik/intellichat
- Owner: CodeWithSwastik
- License: mit
- Created: 2023-03-27T09:41:07.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-28T04:03:43.000Z (almost 3 years ago)
- Last Synced: 2024-04-25T10:02:15.687Z (almost 2 years ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IntelliChat
A convenient wrapper for OpenAI's Chat Completion API.
## Example
Simplest Use Case
```python
from intellichat import ChatBot
bot = ChatBot(api_key="sk-...")
response = bot.get_response("Hi!")
print(response)
```