We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6225af commit ca083a0Copy full SHA for ca083a0
bigframes/core/compile/sqlglot/expressions/ai_ops.py
@@ -15,7 +15,6 @@
15
from __future__ import annotations
16
17
from dataclasses import asdict
18
-import typing
19
20
import sqlglot.expressions as sge
21
tests/system/small/bigquery/test_ai.py
@@ -115,7 +115,7 @@ def test_ai_generate_with_invalid_output_schema_raise_error(session):
115
prompt = ("Describe ", country)
116
117
with pytest.raises(ValueError):
118
- result = bbq.ai.generate(
+ bbq.ai.generate(
119
prompt,
120
endpoint="gemini-2.5-flash",
121
output_schema={"population": "INT64", "is_in_north_america": "bool"},
0 commit comments