├── .devcontainer └── devcontainer.json ├── .gitignore ├── .streamlit └── example-secrets.toml ├── LEGAL.md ├── LICENSE ├── README.md ├── assets └── App_Demo.gif ├── requirements.txt └── src ├── create-views.sql ├── frosty_app.py ├── prompts.py ├── simple_chatbot.py ├── test_frosty.py └── validate_credentials.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/.gitignore -------------------------------------------------------------------------------- /.streamlit/example-secrets.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/.streamlit/example-secrets.toml -------------------------------------------------------------------------------- /LEGAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/LEGAL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/README.md -------------------------------------------------------------------------------- /assets/App_Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/assets/App_Demo.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/create-views.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/src/create-views.sql -------------------------------------------------------------------------------- /src/frosty_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/src/frosty_app.py -------------------------------------------------------------------------------- /src/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/src/prompts.py -------------------------------------------------------------------------------- /src/simple_chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/src/simple_chatbot.py -------------------------------------------------------------------------------- /src/test_frosty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/src/test_frosty.py -------------------------------------------------------------------------------- /src/validate_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-frosty-llm-chatbot-on-streamlit-snowflake/HEAD/src/validate_credentials.py --------------------------------------------------------------------------------