Metadata-Version: 2.1
Name: med-chat
Version: 0.1.0
Summary: A framework of LLM chat clients for mediq applications.
Home-page: https://github.com/SmartMediQ/med-chat
Author: Smartmediq
Author-email: dev@smartmediq.com
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic
Requires-Dist: docstring-parser
Requires-Dist: openai
Requires-Dist: mediqbox

# med-chat

A framework of LLM chat clients for mediq applications.

## Install

`pip install med-chat`

## Usage

```python
from med_chat import Message, ChatClient

chat_client = ChatClient.use("chatgpt")
response = chat_client.complete_chat(
  messages = [
    Message(role="user", content="What is the capital of the United States?"),
  ],
  model="gpt-3.5-turbo"
)
print(response)
```

See more examples under `tests` directory.
