-
Notifications
You must be signed in to change notification settings - Fork 2.9k
feat(genai): add text generation samples - part 3 #10156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
msampathkumar
merged 11 commits into
GoogleCloudPlatform:main
from
jdomingr:genai-sdk-textgen-samples-p3
Sep 17, 2025
+250
−39
Merged
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fda9591
feat: add new genAI text gen audio transcription sample
b0e1a33
feat: add new genAI textgen chat with text sample
5790b63
feat: add new GenAI textgen chat with stream sample
1586619
feat(genai): add new text generation samples
2ee3a22
feat(genai): add new text generation samples
41b3e49
fix textgen chat sample
49c63a7
fix some comments
1c2e791
merge main into this branch and resolve conflicts in test file.
180f4a2
make some comments simpler
a237bc6
fix license header comment
c5811b1
merge main into this branch and resolve test conflicts
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
genai/snippets/src/main/java/genai/textgeneration/TextGenerationChatStreamWithText.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| /* | ||
| * Copyright 2025 Google LLC | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package genai.textgeneration; | ||
|
|
||
| // [START googlegenaisdk_textgen_chat_stream_with_txt] | ||
|
|
||
| import com.google.genai.Chat; | ||
| import com.google.genai.Client; | ||
| import com.google.genai.ResponseStream; | ||
| import com.google.genai.types.GenerateContentResponse; | ||
| import com.google.genai.types.HttpOptions; | ||
|
|
||
| public class TextGenerationChatStreamWithText { | ||
|
|
||
| public static void main(String[] args) { | ||
| // TODO(developer): Replace these variables before running the sample. | ||
| String modelId = "gemini-2.5-flash"; | ||
| generateContent(modelId); | ||
| } | ||
|
|
||
| // Shows how to create a new chat session stream | ||
| public static String generateContent(String modelId) { | ||
| // Initialize client that will be used to send requests. This client only needs to be created | ||
| // once, and can be reused for multiple requests. | ||
| try (Client client = | ||
| Client.builder() | ||
| .location("global") | ||
| .vertexAI(true) | ||
| .httpOptions(HttpOptions.builder().apiVersion("v1").build()) | ||
| .build()) { | ||
|
|
||
| Chat chatSession = client.chats.create(modelId); | ||
| StringBuilder responseTextBuilder = new StringBuilder(); | ||
|
|
||
| try (ResponseStream<GenerateContentResponse> response = | ||
| chatSession.sendMessageStream("Why is the sky blue?")) { | ||
|
|
||
| for (GenerateContentResponse chunk : response) { | ||
| System.out.println(chunk.text()); | ||
| responseTextBuilder.append(chunk.text()); | ||
| } | ||
|
|
||
| } | ||
| // Example response: | ||
| // | ||
| // The sky is blue primarily due to a phenomenon called **Rayleigh scattering**, | ||
| // named after the British physicist Lord Rayleigh. Here's a breakdown of how... | ||
| return responseTextBuilder.toString(); | ||
| } | ||
| } | ||
| } | ||
| // [END googlegenaisdk_textgen_chat_stream_with_txt] | ||
72 changes: 72 additions & 0 deletions
72
genai/snippets/src/main/java/genai/textgeneration/TextGenerationChatWithText.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| /* | ||
| * Copyright 2025 Google LLC | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
jdomingr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package genai.textgeneration; | ||
|
|
||
| // [START googlegenaisdk_textgen_chat_with_txt] | ||
|
|
||
| import com.google.genai.Chat; | ||
| import com.google.genai.Client; | ||
| import com.google.genai.types.Content; | ||
| import com.google.genai.types.GenerateContentConfig; | ||
| import com.google.genai.types.GenerateContentResponse; | ||
| import com.google.genai.types.HttpOptions; | ||
| import com.google.genai.types.Part; | ||
|
|
||
| public class TextGenerationChatWithText { | ||
|
|
||
| public static void main(String[] args) { | ||
| // TODO(developer): Replace these variables before running the sample. | ||
| String modelId = "gemini-2.5-flash"; | ||
| generateContent(modelId); | ||
| } | ||
|
|
||
| // Shows how to create a chat session | ||
| public static String generateContent(String modelId) { | ||
| // Initialize client that will be used to send requests. This client only needs to be created | ||
jdomingr marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| // once, and can be reused for multiple requests. | ||
| try (Client client = | ||
| Client.builder() | ||
| .location("global") | ||
| .vertexAI(true) | ||
| .httpOptions(HttpOptions.builder().apiVersion("v1").build()) | ||
| .build()) { | ||
|
|
||
jdomingr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // Create a new chat session | ||
| Chat chatSession = | ||
| client.chats.create( | ||
| modelId, | ||
| GenerateContentConfig.builder() | ||
| .systemInstruction(Content.fromParts(Part.fromText("Hello"))) | ||
| .systemInstruction( | ||
| Content.builder() | ||
| .role("model") | ||
| .parts(Part.fromText("Great to meet you. What would you like to know?")) | ||
| .build()) | ||
jdomingr marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| .build()); | ||
|
|
||
| GenerateContentResponse response = chatSession.sendMessage("Tell me a story"); | ||
| System.out.print(response.text()); | ||
| // Example response: | ||
| // | ||
| // In the heart of the Whispering Peaks lay the Valley of Silent Echoes, a place perpetually | ||
| // shrouded in a twilight mist. No birds sang there, no rivers flowed, and the few trees that | ||
| // clung to its edges were gnarled and bare... | ||
| return response.text(); | ||
| } | ||
| } | ||
| } | ||
| // [END googlegenaisdk_textgen_chat_with_txt] | ||
73 changes: 73 additions & 0 deletions
73
genai/snippets/src/main/java/genai/textgeneration/TextGenerationTranscriptWithGcsAudio.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| /* | ||
| * Copyright 2025 Google LLC | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
jdomingr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package genai.textgeneration; | ||
|
|
||
| // [START googlegenaisdk_textgen_transcript_with_gcs_audio] | ||
|
|
||
| import com.google.genai.Client; | ||
| import com.google.genai.types.Content; | ||
| import com.google.genai.types.GenerateContentConfig; | ||
| import com.google.genai.types.GenerateContentResponse; | ||
| import com.google.genai.types.HttpOptions; | ||
| import com.google.genai.types.Part; | ||
|
|
||
| public class TextGenerationTranscriptWithGcsAudio { | ||
|
|
||
| public static void main(String[] args) { | ||
| // TODO(developer): Replace these variables before running the sample. | ||
| String modelId = "gemini-2.5-flash"; | ||
| generateContent(modelId); | ||
| } | ||
|
|
||
| // Generates transcript with audio input | ||
| public static String generateContent(String modelId) { | ||
| // Initialize client that will be used to send requests. This client only needs to be created | ||
| // once, and can be reused for multiple requests. | ||
| try (Client client = | ||
| Client.builder() | ||
| .location("global") | ||
| .vertexAI(true) | ||
| .httpOptions(HttpOptions.builder().apiVersion("v1").build()) | ||
| .build()) { | ||
|
|
||
| String prompt = | ||
| "Transcribe the interview, in the format of timecode, speaker, caption.\n" | ||
| + "Use speaker A, speaker B, etc. to identify speakers."; | ||
|
|
||
| // Enable audioTimestamp to generate accurately timestamps for audio-only files | ||
jdomingr marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| GenerateContentConfig contentConfig = | ||
| GenerateContentConfig.builder().audioTimestamp(true).build(); | ||
|
|
||
| GenerateContentResponse response = | ||
| client.models.generateContent( | ||
| modelId, | ||
| Content.fromParts( | ||
| Part.fromUri( | ||
| "gs://cloud-samples-data/generative-ai/audio/pixel.mp3", "audio/mpeg"), | ||
| Part.fromText(prompt)), | ||
jdomingr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| contentConfig); | ||
|
|
||
| System.out.print(response.text()); | ||
| // Example response: | ||
| // 00:00 - Speaker A: your devices are getting better over time. And so we think about it... | ||
| // 00:14 - Speaker B: Welcome to the Made by Google Podcast, where we meet the people who... | ||
| // 00:41 - Speaker A: So many features. I am a singer, so I actually think recorder... | ||
| return response.text(); | ||
| } | ||
| } | ||
| } | ||
| // [END googlegenaisdk_textgen_transcript_with_gcs_audio] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.