snowflake.snowpark.DataFrameAIFunctions.transcribe¶
- DataFrameAIFunctions.transcribe(input_column: Union[snowflake.snowpark.column.Column, str], *, output_column: Optional[str] = None, **kwargs) snowflake.snowpark.DataFrame[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.42.0/src/snowflake/snowpark/dataframe_ai_functions.py#L1064-L1167)¶
Transcribe text from an audio file with optional timestamps and speaker labels.
- Parameters:
input_column – The column (Column object or column name as string) containing FILE references to audio files. Use
to_fileto convert staged paths to FILE type.output_column – The name of the output column to be appended. If not provided, a column named
AI_TRANSCRIBE_OUTPUTis appended.**kwargs – Additional options forwarded to the underlying function, e.g.
timestamp_granularity.
Examples:
This function or method is experimental since 1.39.0.