Metadata-Version: 2.1
Name: llmplus
Version: 0.0.6
Summary: A package for using llm models with api
Author-email: Amirmahdi Mohammadi <mohamadi.mahdi.6@gmail.com>
Project-URL: Homepage, https://github.com/am-mohammadi/llmplus
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# llmplus
Usage
```python
from llmplus.ChatGot.api import API, Models
authorization_key = 'your authorization key from website headers'
api = API(authorization_key)
    
api.model = Models.GPT4()
answer = api.send('who is the manager of the real madrid?')

asnwer2  = api.send('who is the CEO?')
```

Models
```python
Models.GPT4
Models.GPT3
Models.Claude2
```

Acsess to the chat history
```python
API.json_data['messages']
```
