https://github.com/ohcnetwork/discharge_summary
AI patient discharge summary generator
https://github.com/ohcnetwork/discharge_summary
Last synced: about 1 month ago
JSON representation
AI patient discharge summary generator
- Host: GitHub
- URL: https://github.com/ohcnetwork/discharge_summary
- Owner: ohcnetwork
- License: mit
- Created: 2024-04-29T07:03:24.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-01T12:23:38.000Z (about 2 years ago)
- Last Synced: 2025-03-18T06:15:38.825Z (about 1 year ago)
- Language: Python
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
# Discharge Summary
[](https://pypi.python.org/pypi/discharge_summary)
[](https://github.com/coronasafe/discharge_summary/actions/workflows/build.yaml)
Discharge Summary is a plugin for care to add AI generated summary for patient discharge.
## Features
- Generate summary for patient discharge using AI
## Installation
https://care-be-docs.coronasafe.network/pluggable-apps/configuration.html
https://github.com/coronasafe/care/blob/develop/plug_config.py
To install Discharge Summary, you can add the plugin config in [care/plug_config.py](https://github.com/coronasafe/care/blob/develop/plug_config.py) as follows:
```python
...
discharge_summary_plug = Plug(
name="discharge_summary",
package_name="git+https://github.com/coronasafe/discharge_summary.git",
version="@master",
configs={
"SERVICE_PROVIDER_API_KEY": "secret",
},
)
plugs = [discharge_summary_plug]
...
```
## Configuration
The following configurations variables are available for Discharge Summary:
- `SERVICE_PROVIDER_API_KEY`: API key for the summary service provider (OpenAI key)
The plugin will try to find the API key from the config first and then from the environment variable.
## License
This project is licensed under the terms of the [MIT license](LICENSE).
---
This plugin was created with [Cookiecutter](https://github.com/audreyr/cookiecutter) using the [coronasafe/care-plugin-cookiecutter](https://github.com/coronasafe/care-plugin-cookiecutter).