@@ -84,19 +84,19 @@ def ai_generate_bool(
8484 version of Gemini to use.
8585 request_type (Literal["dedicated", "shared", "unspecified"]):
8686 Specifies the type of inference request to send to the Gemini model. The request type determines what quota the request uses.
87- * "dedicated": function only uses Provisioned Throughput quota. The function returns the error Provisioned throughput is not
87+ * "dedicated": function only uses Provisioned Throughput quota. The function returns the error Provisioned throughput is not
8888 purchased or is not active if Provisioned Throughput quota isn't available.
8989 * "shared": the function only uses dynamic shared quota (DSQ), even if you have purchased Provisioned Throughput quota.
90- * "unspecified": If you haven't purchased Provisioned Throughput quota, the function uses DSQ quota.
91- If you have purchased Provisioned Throughput quota, the function uses the Provisioned Throughput quota first.
90+ * "unspecified": If you haven't purchased Provisioned Throughput quota, the function uses DSQ quota.
91+ If you have purchased Provisioned Throughput quota, the function uses the Provisioned Throughput quota first.
9292 If requests exceed the Provisioned Throughput quota, the overflow traffic uses DSQ quota.
9393 model_params (Mapping[Any, Any]):
9494 Provides additional parameters to the model. The MODEL_PARAMS value must conform to the generateContent request body format.
9595
9696 Returns:
9797 bigframes.series.Series: A new struct Series with the result data. The struct contains these fields:
9898 * "result": a BOOL value containing the model's response to the prompt. The result is None if the request fails or is filtered by responsible AI.
99- * "full_response": a STRING value containing the JSON response from the projects.locations.endpoints.generateContent call to the model.
99+ * "full_response": a STRING value containing the JSON response from the projects.locations.endpoints.generateContent call to the model.
100100 The generated text is in the text element.
101101 * "status": a STRING value that contains the API response status for the corresponding row. This value is empty if the operation was successful.
102102 """
0 commit comments