File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,9 @@ def generate_content(output_uri: str) -> str:
2121
2222 client = genai .Client ()
2323 # TODO(developer): Update and un-comment below line
24- # output_uri = "gs://your-bucket/your-prefix/... "
24+ # output_uri = "gs://your-bucket/your-prefix"
2525
26+ # See the documentation: https://googleapis.github.io/python-genai/genai.html#genai.batches.Batches.create
2627 job = client .batches .create (
2728 model = "gemini-1.5-pro-002" ,
2829 src = "gs://cloud-samples-data/batch/prompt_for_batch_gemini_predict.jsonl" ,
@@ -60,5 +61,5 @@ def generate_content(output_uri: str) -> str:
6061
6162if __name__ == "__main__" :
6263 generate_content (
63- output_uri = "gs://your-bucket/your-prefix/... "
64+ output_uri = "gs://your-bucket/your-prefix"
6465 )
You can’t perform that action at this time.
0 commit comments