Skip to content

Commit 40c9835

Browse files
NO SNOW: fix ai functions (#4040)
1 parent 28f546b commit 40c9835

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/snowflake/snowpark/dataframe_ai_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1110,7 +1110,7 @@ def transcribe(
11101110
>>> len(result["segments"]) > 0
11111111
True
11121112
>>> result["segments"][0]["text"].lower()
1113-
'glad'
1113+
'the'
11141114
>>> 'start' in result["segments"][0] and 'end' in result["segments"][0]
11151115
True
11161116

src/snowflake/snowpark/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13486,7 +13486,7 @@ def ai_transcribe(
1348613486
>>> len(result["segments"]) > 0
1348713487
True
1348813488
>>> result["segments"][0]["text"].lower()
13489-
'glad'
13489+
'the'
1349013490
>>> 'start' in result["segments"][0] and 'end' in result["segments"][0]
1349113491
True
1349213492

0 commit comments

Comments
 (0)