├── .gitignore ├── LICENSE ├── README.md ├── chat.py ├── contributing.md ├── logs ├── log_1695381119.3442376_chat.txt ├── log_1695381132.8551118_notes.txt ├── log_1695381158.4630535_diagnosis.txt ├── log_1695381175.9339786_clinical.txt └── log_1695381194.2854476_referrals.txt ├── requirements.txt ├── system_01_intake.md ├── system_02_prepare_notes.md ├── system_03_diagnosis.md ├── system_04_clinical.md └── system_05_referrals.md /.gitignore: -------------------------------------------------------------------------------- 1 | key_openai.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/README.md -------------------------------------------------------------------------------- /chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/chat.py -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/contributing.md -------------------------------------------------------------------------------- /logs/log_1695381119.3442376_chat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/logs/log_1695381119.3442376_chat.txt -------------------------------------------------------------------------------- /logs/log_1695381132.8551118_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/logs/log_1695381132.8551118_notes.txt -------------------------------------------------------------------------------- /logs/log_1695381158.4630535_diagnosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/logs/log_1695381158.4630535_diagnosis.txt -------------------------------------------------------------------------------- /logs/log_1695381175.9339786_clinical.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/logs/log_1695381175.9339786_clinical.txt -------------------------------------------------------------------------------- /logs/log_1695381194.2854476_referrals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/logs/log_1695381194.2854476_referrals.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | halo 2 | openai 3 | pyyaml -------------------------------------------------------------------------------- /system_01_intake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/system_01_intake.md -------------------------------------------------------------------------------- /system_02_prepare_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/system_02_prepare_notes.md -------------------------------------------------------------------------------- /system_03_diagnosis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/system_03_diagnosis.md -------------------------------------------------------------------------------- /system_04_clinical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/system_04_clinical.md -------------------------------------------------------------------------------- /system_05_referrals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daveshap/Medical_Intake/HEAD/system_05_referrals.md --------------------------------------------------------------------------------