Setting up the app
Setting up the compute pools
USE ROLE SYSADMIN;
CREATE COMPUTE POOL IF NOT EXISTS textual_api_pool
MIN_NODES = 1
MAX_NODES = 1
INSTANCE_FAMILY = CPU_X64_XS
AUTO_RESUME = true
AUTO_SUSPEND_SECS = 600;
CREATE COMPUTE POOL IF NOT EXISTS textual_ml_pool
MIN_NODES = 1
MAX_NODES = 1
INSTANCE_FAMILY = GPU_NV_S
AUTO_RESUME = true;
AUTO_SUSPEND_SECS = 600;Creating a warehouse for Textual to query Snowflake
Mounting model-based custom entity types
Creating the stage to mount the entity types
Mounting the entity types
Last updated
Was this helpful?