In Module 2,Building Prototypes in Snowflake , Getting Started with Streamlit in Snowflake, the professor tells us to take the 120 days $400 free trial. Then he explains the platform look changes frequently so what we experience might differ from what can be seen in his video. For example , he clicks in the left sidebar on the data tab to explore database, schemas etc . This is not what I see , instaed under Home /Work with Data, I have Project Ingestion Transformation etc… Can you provide a link to the tutorial to the current platform please.
2d: once we have finished practicing , can you provide the procedure to follow to delete the account neatly please.
another point to mention in Module 2 , Video : From STAGES to Table with Cortex where the professor shows how to extra info from unstructured data (100 files) into a table. I’m getting that the model is not available in the Region I have chosen; to allow cross region
Thank you for reporting! Just shared it with the team and we’ll double check what you just mentioned about the platform.
About the region, that is curious may I ask from which region are you connecting? just to double check with the Streamlit/Snowflake about this issue, please?
I’m Chanin, the course instructor, first of all thanks for enrolling in the course. In regards to the issue that you’re facing, it would be helpful to know which region you are connecting from.
To figure that out, can you run the following in a Notebook SQL cell or in a SQL worksheet: sqlSELECT CURRENT_REGION();
For me, I’m getting the following output: AWS_US_WEST_2
I’ve also rechecked the notebook file (M2/Lesson_01/M2L1V6.ipynb) in the course GitHub repo (github.com/https-deeplearning-ai/fast-prototyping-of-genai-apps-with-streamlit) and adjusted the line with the stage path from @AVALANCHE_STAGE to @AVALANCHE_DB.AVALANCHE_SCHEMA.AVALANCHE_STAGE to ensure that you’re in the correct path of the stage.
Also, it would be helpful if you could share a screenshot of the error that you’re encountering.
The error message says among other things “The model you requested is unavailable in your region” . In the Snowflake docs, I have found the following Cross-region inference | Snowflake Documentation
It seems that the European region isn’t supporting the LLM model, could you try activating access to the US region by running the following SQL statement:
ALTER ACCOUNT SET CORTEX_ENABLED_CROSS_REGION = 'AWS_US';
Afterwards, could you run:
SHOW PARAMETERS LIKE 'CORTEX_ENABLED_CROSS_REGION' IN ACCOUNT;
I haven’t checked the rest of the course; I’m wondering if this cross region inference will be needed again later on (and how to switch back to default mode).
While I’m at it, I would like to know if you or someone at deeplearning.ai @lesly.zerna can provide a link explaining how to cleanly delete the Snowflake account once this course has been completed please.