No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Save question
0
Community Discussion
No comments yet. Be the first to start the discussion!
Which function calculates the Manhattan distance between two points in a vector space?
AVECTOR_INNER_PRODUCT
BVECTOR_L1_DISTANCE
CVECTOR_L2_DISTANCE
DVECTOR_COSINE_SIMILARITY
Which workflow should be used to analyze data in unstructured documents with Snowflake Cortex AI features, including Retrieval-Augmented Generation (RAG)?
A
Use EMBED_TEXT_768 to extract text from documents.2. Apply SUMMARTZE directly to the PDF files.3. Use TRANSLATE to retrieve the data.
B
Use SENTIMENT on binary files.2. Apply TRANSLATE to generate embedding vectors.3. Use CLASSIFY_TEXT to extract layout information from the PDF files.
C
Use COMPLETE to summarize documents directly from external URLs.2. Use COUNT_TOKENS to validate the output size.3. Store the output in a text file.
D
Use PARSE_DOCUMENT to extract text from documents.2. Store and vectorize the content using EMBED_TEXT_7683. Retrieve data using vector similarity, then use COMPLETE to analyze the data.
Which cost categories do Cortex Search Services incur that are tracked in the CORTEX_SEARCH_DAILY_USAGE_HISTORY view?
Choose two
AServing compute
BCloud services compute
CVirtual warehouse compute
DTOKEN_CREDITS
EEMBED_TEXT_TOKENS
When creating a Snowflake Document AI model, which object must have the CREATE SNOWFLAKE.ML.DOCUMENT_INTELLIGENCE privilege?
AVirtual warehouse
BDatabase
CSchema
DStage
Which proprietary LLM does Snowflake Document AI use?
AArctic-TILT
Bdeepseek-rl
Cjamba-instruct
Dmistral-large2
Which Snowflake feature enables application integration to answer questions using structured data in Snowflake?
ADocument AI
BCopilot
CCortex Search
DCortex Analyst
Which parameters in a SNOWFLAKE.CORTEX.COMPLETE function call can be adjusted to control the randomness and diversity of an LLM response?
Choose two
Aguardrails
Bmax_tokens
Cresponse_format
Dtemperature
Etop_p
Which Snowflake feature simplifies generating vector embeddings and calculating vector similarities, reducing the number of retrieval steps needed in Retrieval Augmented Generation (RAG) pipelines?
ACortex Analyst
BCortex Search
CCortex Fine-tuning
DCortex COMPLETE function
How can costs that are directly associated with invoking the Snowflake Cortex COMPLETE function be minimized?
Choose two
ASet max_tokens to limit the number of input tokens.
BSet max_tokens to limit the number of output tokens in the response.
CReduce the size of the virtual warehouse used to run the function.
DUse an LLM that has more parameters than the current LLM being used.
EUse an LLM that has fewer parameters than the current LLM being used.
Which key considerations apply when using the Snowflake Model Registry to manage models?
Choose two
AOnce a model is registered, it cannot be updated or deleted.
BModels need to be exported to external storage before they are registered.
CModels can be deployed and invoked directly using SQL commands in Snowflake.
DModels registered in the Model Registry can only be used with Snowpark for Python.
EThe Model Registry supports versioning so that multiple versions of a model can be tracked.
How does Snowflake Cortex Analyst generate suggested questions?
Choose two
ACortex Analyst only returns questions that are guaranteed to return results.
BOnboarding questions flagged in the Verified Query Repository (VQR) are only shown if the user provides no input.
CWhen no Verified Query Repository (VQR) is present, Cortex Analyst uses the underlying LLMs to generate up to three suggested questions.
DWhen a Verified Query Repository (VQR) is defined, Cortex Analyst suggests up to five questions based on semantic similarity to the user's input.
ECortex Analyst prioritizes queries in the Verified Query Repository (VQR) as suggestions based on the queries that reference the most-frequently used logical columns.
Which Snowflake Gen AI feature or service provides connectivity through an exposed REST API?
ACopilot
BCortex LLM Playground
CA SNOWFLAKE.CORTEX.COMPLETE SQL function
DA snowflake.cortex.complete Python function
A Gen AI Specialist is developing an internal company chatbot that uses Streamlit and Snowflake Cortex Analyst to interpret and answer user queries against Snowflake data.
Team members need to be able to ask a question such as:
Can you provide the sales trend for the last 6 months?
The tool must also be able to answer follow-up questions such as:
Can you break that down by region?
What factors contributed to the dip in February?
To ensure the tool correctly interprets follow-up questions, what must be included in the API request to Cortex Analyst?
AThe most recent user message
BA session token to maintain session state across API requests
CThe entire conversation history in the messages field of the API request
DA Snowflake session parameter to maintain conversation context among the previous API requests
Which action can minimize costs for Snowflake Cortex Search Services?
AMake frequent but small updates to the source data.
BSplit the text search columns into chunks of no more than 612 tokens.
CReduce the target tag from 5 minutes to 1 minute for real-time indexing.
DSuspend serving when it is not necessary to run the service.
A table in a pipeline has a VARCHAR column that contains free-form text responses. A Ger AI Specialist must generate three new columns from those text responses.
How should this requirement be fulfilled?
Choose two
AUse the SNOWFLAKE.CORTEX.COMPLETE function specifying a RESPONSE_FORMAT in the options argument, and use dot notation to extract the data to put into the tree new columns.
BUse the SNOWFLAKE.CORTEX.COMPLETE function specifying a TOP_P in the options argument. and parse the value of the CHOICES response key.
CUse the SNOWFLAKE.CORTEX.ENTITY_SENTIMENT function in a SELECT statement once for each of the three new columns.
DCall the SNOWFLAKE.CORTEX.EXTRACT_ANSWER function in a SELECT statement, and use dot notation to extract data to put into the three new columns,
ECall the SNOWFLAKE.CORTEX.EXTRACT_ANSWER function in a SELECT statement once for each of the three new columns.
Which arguments are required for the SNOWFLAKE.CORTEX.COMPLETE function?
AThe query will produce structured data from a document stored in a Snowflake internal stage using Document AI with a model-version identifier
BThe query will produce structured data from a document stored in a Snowflake external stage using Document AI with a model-version identifier
CThe query will produce semi-structured data from a document stored in a Snowflake internal stage using Document AI with a model-version identifier
DThe query will produce semi-structured data from a document stored in a Snowflake external stage using Document AI with a model version identifier
A Gen AI Specialist requires a solution that supports asking questions in natural language and receiving answers based on structured data in Snowflake without using SQL.
How can this be achieved?
Choose two
ACreate a custom data model, apply the data model to a database, and ask questions from the Snowflake Document AI option in the AI & ML Studio in Snowsight.
BCreate a custom data model, enhance the model with cross-region inference, and ask questions in a custom-built application that calls the Snowflake Cortex Agent API.
CCreate a semantic model, upload the semantic model to a stage, and ask questions from the Snowflake Cortex Analyst option in the AI & ML Studio in Snowsight.
DCreate a semantic model, upload the semantic model to a stage, and ask questions in a custom-built application that calls the Snowflake Cortex Analyst API
ECreate a Snowflake Cortex Agent in Snowsight, extract data from the database, and ask questions by fine-tuning an LLM with the extracted data.
Community Discussion