@@ -74,7 +74,7 @@ def generate(
7474 dtype: struct<is_herbivore: bool, number_of_legs: int64, full_response: extension<dbjson<JSONArrowType>>, status: string>[pyarrow]
7575
7676 Args:
77- prompt (Series | List[str|Series] | Tuple[str|Series, ...]):
77+ prompt (str | Series | List[str|Series] | Tuple[str|Series, ...]):
7878 A mixture of Series and string literals that specifies the prompt to send to the model. The Series can be BigFrames Series
7979 or pandas Series.
8080 connection_id (str, optional):
@@ -166,7 +166,7 @@ def generate_bool(
166166 Name: result, dtype: boolean
167167
168168 Args:
169- prompt (Series | List[str|Series] | Tuple[str|Series, ...]):
169+ prompt (str | Series | List[str|Series] | Tuple[str|Series, ...]):
170170 A mixture of Series and string literals that specifies the prompt to send to the model. The Series can be BigFrames Series
171171 or pandas Series.
172172 connection_id (str, optional):
@@ -241,7 +241,7 @@ def generate_int(
241241 Name: result, dtype: Int64
242242
243243 Args:
244- prompt (Series | List[str|Series] | Tuple[str|Series, ...]):
244+ prompt (str | Series | List[str|Series] | Tuple[str|Series, ...]):
245245 A mixture of Series and string literals that specifies the prompt to send to the model. The Series can be BigFrames Series
246246 or pandas Series.
247247 connection_id (str, optional):
@@ -316,7 +316,7 @@ def generate_double(
316316 Name: result, dtype: Float64
317317
318318 Args:
319- prompt (Series | List[str|Series] | Tuple[str|Series, ...]):
319+ prompt (str | Series | List[str|Series] | Tuple[str|Series, ...]):
320320 A mixture of Series and string literals that specifies the prompt to send to the model. The Series can be BigFrames Series
321321 or pandas Series.
322322 connection_id (str, optional):
@@ -387,7 +387,7 @@ def if_(
387387 dtype: string
388388
389389 Args:
390- prompt (Series | List[str|Series] | Tuple[str|Series, ...]):
390+ prompt (str | Series | List[str|Series] | Tuple[str|Series, ...]):
391391 A mixture of Series and string literals that specifies the prompt to send to the model. The Series can be BigFrames Series
392392 or pandas Series.
393393 connection_id (str, optional):
@@ -434,7 +434,7 @@ def classify(
434434 [2 rows x 2 columns]
435435
436436 Args:
437- input (Series | List[str|Series] | Tuple[str|Series, ...]):
437+ input (str | Series | List[str|Series] | Tuple[str|Series, ...]):
438438 A mixture of Series and string literals that specifies the input to send to the model. The Series can be BigFrames Series
439439 or pandas Series.
440440 categories (tuple[str, ...] | list[str]):
@@ -483,7 +483,7 @@ def score(
483483 dtype: Float64
484484
485485 Args:
486- prompt (Series | List[str|Series] | Tuple[str|Series, ...]):
486+ prompt (str | Series | List[str|Series] | Tuple[str|Series, ...]):
487487 A mixture of Series and string literals that specifies the prompt to send to the model. The Series can be BigFrames Series
488488 or pandas Series.
489489 connection_id (str, optional):
0 commit comments