├── .gitignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── environment.yml └── streamlit_app ├── config.yml ├── images ├── MSFT.jpg ├── Microsoft_logo.png ├── Microsoft_logo.svg ├── bot.png └── openai.png ├── llm_bot.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/environment.yml -------------------------------------------------------------------------------- /streamlit_app/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/config.yml -------------------------------------------------------------------------------- /streamlit_app/images/MSFT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/images/MSFT.jpg -------------------------------------------------------------------------------- /streamlit_app/images/Microsoft_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/images/Microsoft_logo.png -------------------------------------------------------------------------------- /streamlit_app/images/Microsoft_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/images/Microsoft_logo.svg -------------------------------------------------------------------------------- /streamlit_app/images/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/images/bot.png -------------------------------------------------------------------------------- /streamlit_app/images/openai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/images/openai.png -------------------------------------------------------------------------------- /streamlit_app/llm_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/llm_bot.py -------------------------------------------------------------------------------- /streamlit_app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/azure-streamlit-chatbot/HEAD/streamlit_app/main.py -------------------------------------------------------------------------------- /streamlit_app/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | requests 3 | pyyaml --------------------------------------------------------------------------------