Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Comment thread
Kef131 marked this conversation as resolved.
.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]
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,15 @@
import com.google.genai.types.Schema;
import com.google.genai.types.Tool;
import com.google.genai.types.Type;
import java.util.List;
import java.util.Map;

public class ToolFunctionDescriptionWithText {

public static void main(String[] args) {
// TODO(developer): Replace these variables before running the sample.
String modelId = "gemini-2.5-flash";
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.";
String contents = "What is the weather like in Boston?";

generateContent(modelId, contents);
}
Expand All @@ -58,59 +51,39 @@ public static String generateContent(String modelId, String contents) {
.httpOptions(HttpOptions.builder().apiVersion("v1").build())
.build()) {

FunctionDeclaration getAlbumSales =
FunctionDeclaration getCurrentWeather =
FunctionDeclaration.builder()
.name("get_album_sales")
.description("Gets the number of albums sold")
.name("get_current_weather")
.description("Get the current weather in a given location")
// Function parameters are specified in schema format
.parameters(
Schema.builder()
.type(Type.Known.OBJECT)
.properties(
Map.of(
"albums",
"location",
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
))
.type(Type.Known.STRING)
.description(
"The city name of the location for which to get the weather.")
.build()))
.required(List.of("location"))
.build()) // End parameters schema
.build(); // End function declaration

Tool salesTool = Tool.builder().functionDeclarations(getAlbumSales).build();
Tool weatherTool = Tool.builder().functionDeclarations(getCurrentWeather).build();

GenerateContentConfig config =
GenerateContentConfig.builder().tools(salesTool).temperature(0.0f).build();
GenerateContentConfig.builder().tools(weatherTool).temperature(0.0f).build();

GenerateContentResponse response = client.models.generateContent(modelId, contents, config);

// response.functionCalls() returns an Immutable<FunctionCall>.
// response.functionCalls() returns an ImmutableList<FunctionCall>.
System.out.println(response.functionCalls().get(0));

return response.functionCalls().toString();
// Example response:
// FunctionCall{id=Optional.empty, args=Optional[{albums=[{copies_sold=350000,
// album_name=Echoes of the Night},
// {copies_sold=120000, album_name=Reckless Hearts}, {copies_sold=75000, album_name=Whispers
// of Dawn},
// {album_name=Street Symphony, copies_sold=100000}]}], name=Optional[get_album_sales]}
// [FunctionCall{args=Optional[{location=Boston, MA}], name=Optional[get_current_weather]}]
}
}
}
Expand Down
20 changes: 10 additions & 10 deletions genai/snippets/src/test/java/genai/tools/ToolsIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,19 @@ public void tearDown() {

@Test
public void testGenerateContentWithFunctionDescription() {

String prompt =
"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.";
String prompt = "What is the weather like in Boston?";

String response = ToolFunctionDescriptionWithText.generateContent(GEMINI_FLASH, prompt);

assertThat(response).isNotEmpty();
assertThat(response).contains("get_current_weather");
assertThat(response).contains("location=Boston");
}

@Test
public void testGenerateContentWithFunctionCallingConfig() {
String response = ToolFunctionCallingConfigWithText.generateContent(GEMINI_FLASH);

assertThat(response).isNotEmpty();
assertThat(response).contains("get_album_sales");
assertThat(response).contains("copies_sold=350000");
Expand Down