├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── copy_files_to_stage.sql ├── cortex_analyst_sis_demo_app.py ├── cortex_analyst_streaming_demo.py ├── cortex_search_create.sql ├── create_snowflake_objects.sql ├── data ├── daily_revenue.csv ├── product.csv └── region.csv ├── load_data.sql ├── requirements.txt └── revenue_timeseries.yaml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/README.md -------------------------------------------------------------------------------- /copy_files_to_stage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/copy_files_to_stage.sql -------------------------------------------------------------------------------- /cortex_analyst_sis_demo_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/cortex_analyst_sis_demo_app.py -------------------------------------------------------------------------------- /cortex_analyst_streaming_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/cortex_analyst_streaming_demo.py -------------------------------------------------------------------------------- /cortex_search_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/cortex_search_create.sql -------------------------------------------------------------------------------- /create_snowflake_objects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/create_snowflake_objects.sql -------------------------------------------------------------------------------- /data/daily_revenue.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/data/daily_revenue.csv -------------------------------------------------------------------------------- /data/product.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/data/product.csv -------------------------------------------------------------------------------- /data/region.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/data/region.csv -------------------------------------------------------------------------------- /load_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/load_data.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/requirements.txt -------------------------------------------------------------------------------- /revenue_timeseries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snowflake-Labs/sfguide-getting-started-with-cortex-analyst/HEAD/revenue_timeseries.yaml --------------------------------------------------------------------------------