├── README.md ├── app └── streamlit_app.py ├── data └── otc_medications.csv ├── requirements.txt └── src ├── __pycache__ ├── gpt.cpython-312.pyc └── recommend.cpython-312.pyc ├── chat_session (1).py ├── gpt.py ├── recommend.py └── symptom_map.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/README.md -------------------------------------------------------------------------------- /app/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/app/streamlit_app.py -------------------------------------------------------------------------------- /data/otc_medications.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/data/otc_medications.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | streamlit 3 | spacy 4 | openai 5 | -------------------------------------------------------------------------------- /src/__pycache__/gpt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/src/__pycache__/gpt.cpython-312.pyc -------------------------------------------------------------------------------- /src/__pycache__/recommend.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/src/__pycache__/recommend.cpython-312.pyc -------------------------------------------------------------------------------- /src/chat_session (1).py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/src/chat_session (1).py -------------------------------------------------------------------------------- /src/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/src/gpt.py -------------------------------------------------------------------------------- /src/recommend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/src/recommend.py -------------------------------------------------------------------------------- /src/symptom_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yixinzhang98/otc_med_chat_agent/HEAD/src/symptom_map.py --------------------------------------------------------------------------------