-
Notifications
You must be signed in to change notification settings - Fork 2.9k
feat(genai): add ToolFunctionCallingConfigWithText sample and standarize ToolFunctionDescriptionWithText sample
#10314
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
Draft
Kef131
wants to merge
2
commits into
main
Choose a base branch
from
feat(genai)_add_function_calling_get_weather
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+164
−52
Draft
Changes from all commits
Commits
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
139 changes: 139 additions & 0 deletions
139
genai/snippets/src/main/java/genai/tools/ToolFunctionCallingConfigWithText.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,139 @@ | ||
| /* | ||
| * Copyright 2026 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.tools; | ||
|
|
||
| // [START googlegenaisdk_tools_func_call_config_with_txt] | ||
|
|
||
| import com.google.genai.Client; | ||
| import com.google.genai.types.FunctionCallingConfig; | ||
| import com.google.genai.types.FunctionCallingConfigMode; | ||
| import com.google.genai.types.FunctionDeclaration; | ||
| import com.google.genai.types.GenerateContentConfig; | ||
| import com.google.genai.types.GenerateContentResponse; | ||
| import com.google.genai.types.HttpOptions; | ||
| import com.google.genai.types.Schema; | ||
| import com.google.genai.types.Tool; | ||
| import com.google.genai.types.ToolConfig; | ||
| import com.google.genai.types.Type; | ||
| import java.util.List; | ||
| import java.util.Map; | ||
|
|
||
| public class ToolFunctionCallingConfigWithText { | ||
|
|
||
| public static void main(String[] args) { | ||
| // TODO(developer): Replace these variables before running the sample. | ||
| String modelId = "gemini-2.5-flash"; | ||
|
|
||
| generateContent(modelId); | ||
| } | ||
|
|
||
| // Generates content using function calling config to force a specific function call | ||
| public static String generateContent(String modelId) { | ||
| String contents = | ||
| "At Stellar Sounds, a music label, 2024 was a rollercoaster. \"Echoes of the Night,\"" | ||
| + " a debut synth-pop album, \n surprisingly sold 350,000 copies, while veteran" | ||
| + " rock band \"Crimson Tide's\" latest, \"Reckless Hearts,\" \n lagged at" | ||
| + " 120,000. Their up-and-coming indie artist, \"Luna Bloom's\" EP, \"Whispers " | ||
| + "of Dawn,\" \n secured 75,000 sales. The biggest disappointment was the " | ||
| + "highly-anticipated rap album \"Street Symphony\" \n only reaching 100,000" | ||
| + " units. Overall, Stellar Sounds moved over 645,000 units this year, revealing" | ||
| + " unexpected \n trends in music consumption."; | ||
|
|
||
| return generateContent(modelId, contents); | ||
| } | ||
|
|
||
| // Generates content using function calling config to force a specific function call | ||
| public static String generateContent(String modelId, String contents) { | ||
| // 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()) { | ||
|
|
||
| FunctionDeclaration getAlbumSales = | ||
| FunctionDeclaration.builder() | ||
| .name("get_album_sales") | ||
| .description("Gets the number of albums sold") | ||
| // Function parameters are specified in schema format | ||
| .parameters( | ||
| Schema.builder() | ||
| .type(Type.Known.OBJECT) | ||
| .properties( | ||
| Map.of( | ||
| "albums", | ||
| Schema.builder() | ||
| .type(Type.Known.ARRAY) | ||
| .description("List of albums") | ||
| .items( | ||
| Schema.builder() | ||
| .description("Album and its sales") | ||
| .type(Type.Known.OBJECT) | ||
| .properties( | ||
| Map.of( | ||
| "album_name", | ||
| Schema.builder() | ||
| .type(Type.Known.STRING) | ||
| .description("Name of the music album") | ||
| .build(), | ||
| "copies_sold", | ||
| Schema.builder() | ||
| .type(Type.Known.INTEGER) | ||
| .description("Number of copies sold") | ||
| .build())) | ||
| .build()) // End items schema for albums | ||
| .build() // End "albums" property schema | ||
| )) | ||
| .build()) // End parameters schema | ||
| .build(); // End function declaration | ||
|
|
||
| Tool salesTool = Tool.builder().functionDeclarations(getAlbumSales).build(); | ||
|
|
||
| ToolConfig toolConfig = | ||
| ToolConfig.builder() | ||
| .functionCallingConfig( | ||
| FunctionCallingConfig.builder() | ||
| .mode(FunctionCallingConfigMode.Known.ANY) | ||
| .allowedFunctionNames(List.of("get_album_sales")) | ||
| .build()) | ||
| .build(); | ||
|
|
||
| GenerateContentConfig config = | ||
| GenerateContentConfig.builder() | ||
| .tools(salesTool) | ||
| .toolConfig(toolConfig) | ||
| .temperature(0.0f) | ||
| .build(); | ||
|
|
||
| GenerateContentResponse response = client.models.generateContent(modelId, contents, config); | ||
|
|
||
| // response.functionCalls() returns an ImmutableList<FunctionCall>. | ||
| System.out.println(response.functionCalls().get(0)); | ||
|
|
||
| return response.functionCalls().toString(); | ||
| // Example response: | ||
| // [FunctionCall{args=Optional[{albums=[{album_name=Echoes of the Night, | ||
| // copies_sold=350000}, {album_name=Reckless Hearts, copies_sold=120000}, | ||
| // {album_name=Whispers of Dawn, copies_sold=75000}, | ||
| // {album_name=Street Symphony, copies_sold=100000}]}], | ||
| // name=Optional[get_album_sales]}] | ||
| } | ||
| } | ||
| } | ||
| // [END googlegenaisdk_tools_func_call_config_with_txt] | ||
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
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.