An open API service indexing awesome lists of open source software.

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.

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)
```