CREATE MODEL
statement, the following parameters are supported in the USING
clause of the query:
engine
: The name of the ML Engine to use. This is a required parameter.api_key
: The Twelve Labs API key to use for authentication. This is a required parameter.task
: The task to perform. This is a required parameter and must be one of search
or classification
.index_name
: The name of the index to use; if it does not exist, it will be created. This is a required parameter. More information about indexes can be found here.index_options
: A list of the types of information within the video that will be processed by the video understanding engine. This is a required parameter and can be any combination of visual
, conversation
, text_in_video
and logo
. More information about index options can be found here.video_urls
: A list of URLs to the videos to be indexed. This is an optional parameter, but if not specified, one of video_files
, video_urls_col
or video_files_col
must be specified instead.video_files
: A list of local paths to the videos to be indexed. This is an optional parameter, but if not specified, one of video_urls
, video_urls_col
or video_files_col
must be specified instead.video_urls_col
: The name of the column containing the URLs to the videos to be indexed. This is an optional parameter, but if not specified, one of video_urls
, video_files
or video_files_col
must be specified instead.video_files_col
: The name of the column containing the local paths to the videos to be indexed. This is an optional parameter, but if not specified, one of video_urls
, video_files
or video_urls_col
must be specified instead.search_options
: A list of the sources of information to use when performing a search. This parameter is required if the task
is search
and it should be a subset of index_options
. More information about search options can be found here.search_options
parameter is specific to the search
task and should be a subset of index_options
.
query
column is a required parameter and should contain the search query.