├── .devcontainer └── devcontainer.json ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── app.py ├── example.env ├── notebooks └── langchain_testing.ipynb └── requirements.txt /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/app.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/example.env -------------------------------------------------------------------------------- /notebooks/langchain_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/notebooks/langchain_testing.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/az-oai-chatgpt-streamlit-harness/HEAD/requirements.txt --------------------------------------------------------------------------------