├── .gitignore ├── .streamlit └── config.toml ├── README.md ├── azure-pipelines.yml ├── biogpt.py ├── falcon.py ├── gpt.py ├── requirements.txt └── streamlit_app.py /.gitignore: -------------------------------------------------------------------------------- 1 | .streamlit\secrets.toml 2 | questions.txt 3 | notebooks/ -------------------------------------------------------------------------------- /.streamlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/.streamlit/config.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /biogpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/biogpt.py -------------------------------------------------------------------------------- /falcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/falcon.py -------------------------------------------------------------------------------- /gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/gpt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vvrahul11/llm_chatbot/HEAD/streamlit_app.py --------------------------------------------------------------------------------