大语言模型 (LLM) 擅长解决许多类型的问题。但是,它们受到以下限制:
- 模型在训练后被冻结,导致知识过时。
- 无法查询或修改外部数据。
函数调用可以解决这些缺点。函数调用有时也称为“工具使用”,因为它允许模型使用外部工具,例如 API 和函数。
向 LLM 提交提示时,您还需要向模型提供一组工具,以便模型可以使用这些工具来响应用户提示。例如,您可以提供一个函数 get_weather
,该函数接受一个位置参数,并返回该位置的天气状况信息。
处理提示时,该模型可以选择将某些数据处理任务委托给您确定的函数。模型不会直接调用函数。相反,模型会提供结构化数据输出,其中包含要调用的函数和要使用的参数值。例如,对于提示 What is the weather like in Boston?
,模型可以将处理委托给 get_weather
函数,并提供位置参数值 Boston, MA
。
您可以使用模型的结构化输出来调用外部 API。例如,您可以连接到天气服务 API,提供位置 Boston, MA
,并接收有关温度、云量和风况的信息。
然后,您可以将 API 输出返回给模型,使模型能够完成对提示的回答。对于天气示例,模型可能会提供以下响应:It is currently 38 degrees Fahrenheit in Boston, MA with partly cloudy skies.
支持的模型
以下模型支持函数调用:
模型 | 版本 | 函数调用发布阶段 | 支持并行函数调用 | 支持强制函数调用 |
---|---|---|---|---|
Gemini 1.0 Pro | all versions |
正式版 | 否 | 否 |
Gemini 1.5 Flash | all versions |
正式版 | 是 | 是 |
Gemini 1.5 Pro | all versions |
正式版 | 是 | 是 |
函数调用的应用场景
您可以使用函数调用执行以下任务:
使用场景 | 示例说明 | 示例链接 |
---|---|---|
与外部 API 集成 | 使用气象 API 获取天气信息 | 笔记本教程 |
将地址转换为纬度/经度坐标 | 笔记本教程 | |
使用货币兑换 API 进行货币转换 | Codelab | |
构建高级聊天机器人 | 回答客户关于产品和服务的问题 | 笔记本教程 |
创建一个助理来回答有关公司财务和新闻的问题 | 笔记本教程 | |
结构和控制函数调用 | 从原始日志数据中提取结构化实体 | 笔记本教程 |
从用户输入中提取单个或多个参数 | 笔记本教程 | |
在函数调用中处理列表和嵌套数据结构 | 笔记本教程 | |
处理函数调用行为 | 处理并行函数调用和响应 | 笔记本教程 |
管理模型可以调用的时间和函数 | 笔记本教程 | |
使用自然语言查询数据库 | 将自然语言问题转换为适用于 BigQuery 的 SQL 查询 | 示例应用 |
多模态函数调用 | 使用图片、视频、音频和 PDF 作为输入来触发函数调用 | 笔记本教程 |
下面是一些其他用例:
解读语音指令:创建与车载任务相对应的函数。例如,您可以创建用于开启电台或启动空调的函数。将用户语音指令的音频文件发送到模型,要求模型将音频转换为文字,并识别用户想要调用的功能。
根据环境触发器自动执行工作流:创建用于表示可自动化的流程的函数。向模型提供来自环境传感器的数据,并要求模型解析和处理数据,以确定是否应激活一个或多个工作流。例如,一个模型可以处理仓库中的温度数据,并选择启用洒水器功能。
自动分配支持服务工单:为模型提供支持服务工单、日志和内容感知规则。让模型处理所有这些信息,以确定应将工单分配给谁。调用一个函数,将工单分配给模型建议的人员。
从知识库中检索信息:创建用于检索并汇总给定主题方面的学术文章的函数。使模型能够回答有关学术主题的问题,并为其答案提供引用。
如何创建函数调用应用
为了让用户能够与模型交互并使用函数调用,您必须创建执行以下任务的代码:
- 设置您的环境。
- 使用函数声明定义和描述一组可用的函数。
- 向模型提交用户的提示和函数声明。
- 使用模型输出的结构化数据调用函数。
- 向模型提供函数输出。
您可以创建一个应用来管理所有这些任务。此应用可以是文本聊天机器人、语音客服、自动化工作流或任何其他程序。
您可以使用函数调用生成单个文本回答或支持聊天会话。临时文本回答对于特定的业务任务(包括代码生成)非常有用。聊天会话在形式自由的对话场景中非常有用,这些场景中用户可能会询问后续问题。
如果您使用函数调用生成单个回答,则必须为模型提供互动的完整上下文。另一方面,如果您在聊天会话的上下文中使用函数调用,则会话会为您存储上下文,并将其包含在每个模型请求中。在这两种情况下,Vertex AI 都会将互动的历史记录存储在客户端。
本指南演示了如何使用函数调用生成单个文本响应。如需查看端到端示例,请参阅文本示例。如需了解如何使用函数调用来支持聊天会话,请参阅聊天示例。
第 1 步:设置环境
导入所需的模块并初始化模型:
Python
import vertexai
from vertexai.generative_models import (
Content,
FunctionDeclaration,
GenerationConfig,
GenerativeModel,
Part,
Tool,
)
# Initialize Vertex AI
# TODO(developer): Update and un-comment below lines
# project_id = 'PROJECT_ID'
vertexai.init(project=project_id, location="us-central1")
# Initialize Gemini model
model = GenerativeModel(model_name="gemini-1.0-pro-001")
第 2 步:声明一组函数
应用必须声明一组函数,供模型用于处理提示。
请求中可提供的函数声明的最大数量为 128 个。
您必须以与 OpenAPI 架构兼容的架构格式提供函数声明。Vertex AI 对 OpenAPI 架构提供有限支持。支持以下属性:type
、nullable
、required
、format
、description
、properties
、items
、enum
。不支持以下属性:default
、optional
、maximum
、oneOf
。如需了解与函数声明相关的最佳实践(包括有关名称和说明的提示),请参阅最佳实践。
如果您使用 REST API,请使用 JSON 指定架构。如果您使用的是 Vertex AI SDK for Python,则可以使用 Python 字典手动指定架构,也可以使用 from_func
辅助函数自动指定架构。
JSON
{
"contents": ...,
"tools": [
{
"function_declarations": [
{
"name": "find_movies",
"description": "find movie titles currently playing in theaters based on any description, genre, title words, etc.",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616"
},
"description": {
"type": "string",
"description": "Any kind of description including category or genre, title words, attributes, etc."
}
},
"required": [
"description"
]
}
},
{
"name": "find_theaters",
"description": "find theaters based on location and optionally movie title which are is currently playing in theaters",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616"
},
"movie": {
"type": "string",
"description": "Any movie title"
}
},
"required": [
"location"
]
}
},
{
"name": "get_showtimes",
"description": "Find the start times for movies playing in a specific theater",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616"
},
"movie": {
"type": "string",
"description": "Any movie title"
},
"theater": {
"type": "string",
"description": "Name of the theater"
},
"date": {
"type": "string",
"description": "Date for requested showtime"
}
},
"required": [
"location",
"movie",
"theater",
"date"
]
}
}
]
}
]
}
Python 字典
以下函数声明接受单个 string
形参:
function_name = "get_current_weather"
get_current_weather_func = FunctionDeclaration(
name=function_name,
description="Get the current weather in a given location",
parameters={
"type": "object",
"properties": {
"location": {"type": "string", "description": "The city name of the location for which to get the weather."}
},
},
)
以下函数声明同时接受对象和数组参数:
extract_sale_records_func = FunctionDeclaration(
name="extract_sale_records",
description="Extract sale records from a document.",
parameters={
"type": "object",
"properties": {
"records": {
"type": "array",
"description": "A list of sale records",
"items": {
"description": "Data for a sale record",
"type": "object",
"properties": {
"id": {"type": "integer", "description": "The unique id of the sale."},
"date": {"type": "string", "description": "Date of the sale, in the format of MMDDYY, e.g., 031023"},
"total_amount": {"type": "number", "description": "The total amount of the sale."},
"customer_name": {"type": "string", "description": "The name of the customer, including first name and last name."},
"customer_contact": {"type": "string", "description": "The phone number of the customer, e.g., 650-123-4567."},
},
"required": ["id", "date", "total_amount"],
},
},
},
"required": ["records"],
},
)
函数中的 Python
以下代码示例声明了一个函数,该函数会对数组中的数字相乘,并使用 from_func
生成 FunctionDeclaration
架构。
# Define a function. Could be a local function or you can import the requests library to call an API
def multiply_numbers(numbers):
"""
Calculates the product of all numbers in an array.
Args:
numbers: An array of numbers to be multiplied.
Returns:
The product of all the numbers. If the array is empty, returns 1.
"""
if not numbers: # Handle empty array
return 1
product = 1
for num in numbers:
product *= num
return product
multiply_number_func = FunctionDeclaration.from_func(multiply_numbers)
'''
multiply_number_func contains the following schema:
name: "multiply_numbers"
description: "Calculates the product of all numbers in an array."
parameters {
type_: OBJECT
properties {
key: "numbers"
value {
description: "An array of numbers to be multiplied."
title: "Numbers"
}
}
required: "numbers"
description: "Calculates the product of all numbers in an array."
title: "multiply_numbers"
}
'''
第 3 步:将提示和函数声明提交给模型
当用户提供提示时,应用必须为模型提供用户提示和函数声明。如需配置模型生成结果的方式,应用可以为模型提供生成配置。如需配置模型使用函数声明的方式,应用可以为模型提供工具配置。
定义用户提示
以下是用户提示的示例:“波士顿的天气如何?”
以下示例展示了如何定义用户提示:
Python
# Define the user's prompt in a Content object that we can reuse in model calls
user_prompt_content = Content(
role="user",
parts=[
Part.from_text("What is the weather like in Boston?"),
],
)
如需了解与用户提示相关的最佳实践,请参阅最佳实践 - 用户提示。
生成配置
对于不同的参数值,模型会生成不同的结果。温度参数用于控制此生成中的随机程度。
较低的温度有利于需要确定性参数值的函数,而较高的温度有利于具有接受更具多样性或创造性参数值的参数的函数。温度为 0
是确定性的。在这种情况下,给定提示的回复大多是确定的,但可能仍然有少量变化。如需了解详情,请参阅 Gemini API。
如需设置此参数,请提交生成配置 (generation_config
) 以及提示和函数声明。 您可以使用 Vertex AI API 和更新后的 generation_config
在聊天对话期间更新 temperature
参数。如需查看设置 temperature
参数的示例,请参阅如何提交提示和函数声明。
如需了解与生成配置相关的最佳实践,请参阅最佳实践 - 生成配置。
工具配置
您可以对模型应如何使用您提供的函数声明进行一些限制。例如,您可以强制模型仅预测函数调用(“强制函数调用”或“受控生成的函数调用”)。您还可以选择为模型提供一整套函数声明,但应将其回答限制为其中一部分函数。
如需添加这些约束条件,请提交工具配置 (tool_config
) 以及提示和函数声明。在配置中,您可以指定以下模式之一:
模式 | 说明 |
---|---|
自动 | 默认模型行为。模型决定是预测函数调用还是自然语言回答。 |
任意 | 模型必须仅预测函数调用。如需将模型限制为部分函数,请在 allowed_function_names 中定义允许使用的函数名称。 |
无 | 模型不得预测函数调用。这种行为等同于模型请求没有任何关联的函数声明。 |
如需查看支持 ANY
模式(“强制函数调用”)的模型列表,请参阅支持的模型。
如需了解详情,请参阅 Function Call API。
如何提交提示和函数声明
以下示例展示了如何向模型提交提示和函数声明,并限制模型仅预测 get_current_weather
函数调用。
Python
# Define a tool that includes some of the functions that we declared earlier
tool = Tool(
function_declarations=[get_current_weather_func, extract_sale_records_func, multiply_number_func],
)
# Send the prompt and instruct the model to generate content using the Tool object that you just created
response = model.generate_content(
user_prompt_content,
generation_config={"temperature": 0},
tools=[tool],
tool_config=ToolConfig(
function_calling_config=ToolConfig.FunctionCallingConfig(
# ANY mode forces the model to predict only function calls
mode=ToolConfig.FunctionCallingConfig.Mode.ANY,
# Allowed function calls to predict when the mode is ANY. If empty, any of
# the provided function calls will be predicted.
allowed_function_names=["get_current_weather"],
))
)
response_function_call_content = response.candidates[0].content
如果模型确定它需要特定函数的输出,则应用从该模型收到的响应将包含函数名称以及调用该函数应使用的参数值。
以下是针对用户提示“波士顿的天气如何?”的模型响应示例。模型建议以参数 Boston, MA
调用 get_current_weather
函数。
candidates { content { role: "model" parts { function_call { name: "get_current_weather" args { fields { key: "location" value { string_value: "Boston, MA" } } } } } } ... }
对于“获取新德里和旧金山的天气详情?”等提示,模型可能会建议进行多项并行函数调用。如需了解详情,请参阅并行函数调用示例。
第 4 步:调用外部 API
如果应用从模型收到函数名称和参数值,则必须连接到外部 API 并调用该函数。
以下示例使用合成数据来模拟来自外部 API 的响应载荷:
Python
# Check the function name that the model responded with, and make an API call to an external system
if (response.candidates[0].content.parts[0].function_call.name == "get_current_weather"):
# Extract the arguments to use in your API call
location = (
response.candidates[0].content.parts[0].function_call.args["location"]
)
# Here you can use your preferred method to make an API request to fetch the current weather, for example:
# api_response = requests.post(weather_api_url, data={"location": location})
# In this example, we'll use synthetic data to simulate a response payload from an external API
api_response = """{ "location": "Boston, MA", "temperature": 38, "description": "Partly Cloudy",
"icon": "partly-cloudy", "humidity": 65, "wind": { "speed": 10, "direction": "NW" } }"""
如需了解与 API 调用相关的最佳实践,请参阅最佳实践 - API 调用。
第 5 步:向模型提供函数的输出
应用从外部 API 收到响应后,必须将此响应提供给模型。以下示例展示了如何使用 Python 执行此操作:
Python
response = model.generate_content(
[
user_prompt_content, # User prompt
response_function_call_content, # Function call response
Content(
parts=[
Part.from_function_response(
name="get_current_weather",
response={
"content": api_response, # Return the API response to Gemini
},
)
],
),
],
tools=[weather_tool],
)
# Get the model summary response
summary = response.candidates[0].content.parts[0].text
如果模型提出了多个并行函数调用,应用必须将所有响应提供给模型。如需了解详情,请参阅并行函数调用示例。
模型可能会确定在响应提示时需要另一个函数的输出。在这种情况下,应用从模型收到的响应将包含另一个函数名称和另一组参数值。
如果模型确定 API 响应足以回答用户的提示,则会创建自然语言回答并将其返回给应用。在这种情况下,应用必须将回答传递回用户。以下是回答的示例:
It is currently 38 degrees Fahrenheit in Boston, MA with partly cloudy skies. The humidity is 65% and the wind is blowing at 10 mph from the northwest.
函数调用示例
文本示例
您可以使用函数调用生成单个文本回答。临时文本回答对于特定的业务任务(包括代码生成)非常有用。
如果您使用函数调用生成单个回答,则必须为模型提供互动的完整上下文。Vertex AI 会将互动的历史记录存储在客户端。
Python
此示例演示的是文本场景,其中包含一个函数和一个提示。它使用 GenerativeModel
类及其方法。如需详细了解如何将 Vertex AI SDK for Python 与 Gemini 多模态模型搭配使用,请参阅 Vertex AI SDK for Python 中的多模态类简介。
Python
如需了解如何安装或更新 Vertex AI SDK for Python,请参阅安装 Vertex AI SDK for Python。 如需了解详情,请参阅 Python API 参考文档。
C#
此示例演示的是文本场景,其中包含一个函数和一个提示。
C#
在尝试此示例之前,请按照《Vertex AI 快速入门:使用客户端库》中的 C# 设置说明执行操作。 如需了解详情,请参阅 Vertex AI C# API 参考文档。
如需向 Vertex AI 进行身份验证,请设置应用默认凭据。 如需了解详情,请参阅为本地开发环境设置身份验证。
Node.js
此示例演示的是文本场景,其中包含一个函数和一个提示。
Node.js
在尝试此示例之前,请按照《Vertex AI 快速入门:使用客户端库》中的 Node.js 设置说明执行操作。 如需了解详情,请参阅 Vertex AI Node.js API 参考文档。
如需向 Vertex AI 进行身份验证,请设置应用默认凭据。 如需了解详情,请参阅为本地开发环境设置身份验证。
REST
此示例演示的是文本场景,其中包含三个函数和一个提示。
在此示例中,您调用了两次生成式 AI 模型。
第一个模型请求
该请求必须在 text
参数中定义提示。本示例定义了以下提示:“Which theaters in Mountain View show Barbie movie?”(山景城的哪些影院在播放电影《芭比》?)。
该请求还必须定义一个工具 (tools
),其中包含一组函数声明 (functionDeclarations
)。这些函数声明必须采用与 OpenAPI 架构兼容的格式指定。本示例定义了以下函数:
find_movies
查找在影院上播放的电影。find_theatres
根据位置查找影院。get_showtimes
查找在特定影院播放的电影的开场时间。
如需详细了解模型请求的参数,请参阅 Gemini API。
将 my-project 替换为您的 Google Cloud 项目的名称。
第一个模型请求
PROJECT_ID=my-project MODEL_ID=gemini-1.0-pro API=streamGenerateContent curl -X POST -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Content-Type: application/json" https://us-central1-aiplatform.googleapis.com/v1/projects/${PROJECT_ID}/locations/us-central1/publishers/google/models/${MODEL_ID}:${API} -d '{ "contents": { "role": "user", "parts": { "text": "Which theaters in Mountain View show the Barbie movie?" } }, "tools": [ { "function_declarations": [ { "name": "find_movies", "description": "find movie titles currently playing in theaters based on any description, genre, title words, etc.", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" }, "description": { "type": "string", "description": "Any kind of description including category or genre, title words, attributes, etc." } }, "required": [ "description" ] } }, { "name": "find_theaters", "description": "find theaters based on location and optionally movie title which are is currently playing in theaters", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" }, "movie": { "type": "string", "description": "Any movie title" } }, "required": [ "location" ] } }, { "name": "get_showtimes", "description": "Find the start times for movies playing in a specific theater", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" }, "movie": { "type": "string", "description": "Any movie title" }, "theater": { "type": "string", "description": "Name of the theater" }, "date": { "type": "string", "description": "Date for requested showtime" } }, "required": [ "location", "movie", "theater", "date" ] } } ] } ] }'
对于“Which theaters in Mountain View show Barbie movie?”(山景城的哪些影院在播放电影《芭比》?)提示,模型可能会返回带有参数 Barbie
和 Mountain View, CA
的函数 find_theatres
。
对第一个模型请求的响应
[{ "candidates": [ { "content": { "parts": [ { "functionCall": { "name": "find_theaters", "args": { "movie": "Barbie", "location": "Mountain View, CA" } } } ] }, "finishReason": "STOP", "safetyRatings": [ { "category": "HARM_CATEGORY_HARASSMENT", "probability": "NEGLIGIBLE" }, { "category": "HARM_CATEGORY_HATE_SPEECH", "probability": "NEGLIGIBLE" }, { "category": "HARM_CATEGORY_SEXUALLY_EXPLICIT", "probability": "NEGLIGIBLE" }, { "category": "HARM_CATEGORY_DANGEROUS_CONTENT", "probability": "NEGLIGIBLE" } ] } ], "usageMetadata": { "promptTokenCount": 9, "totalTokenCount": 9 } }]
第二个模型请求
此示例使用合成数据,而不是调用外部 API。具有两项结果,每个结果都包含两个参数(name
和 address
):
name
:AMC Mountain View 16
,address
:2000 W El Camino Real, Mountain View, CA 94040
name
:Regal Edwards 14
,address
:245 Castro St, Mountain View, CA 94040
将 my-project 替换为您的 Google Cloud 项目的名称。
第二个模型请求
PROJECT_ID=my-project MODEL_ID=gemini-1.0-pro API=streamGenerateContent curl -X POST -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Content-Type: application/json" https://us-central1-aiplatform.googleapis.com/v1/projects/${PROJECT_ID}/locations/us-central1/publishers/google/models/${MODEL_ID}:${API} -d '{ "contents": [{ "role": "user", "parts": [{ "text": "Which theaters in Mountain View show the Barbie movie?" }] }, { "role": "model", "parts": [{ "functionCall": { "name": "find_theaters", "args": { "location": "Mountain View, CA", "movie": "Barbie" } } }] }, { "parts": [{ "functionResponse": { "name": "find_theaters", "response": { "name": "find_theaters", "content": { "movie": "Barbie", "theaters": [{ "name": "AMC Mountain View 16", "address": "2000 W El Camino Real, Mountain View, CA 94040" }, { "name": "Regal Edwards 14", "address": "245 Castro St, Mountain View, CA 94040" }] } } } }] }], "tools": [{ "functionDeclarations": [{ "name": "find_movies", "description": "find movie titles currently playing in theaters based on any description, genre, title words, etc.", "parameters": { "type": "OBJECT", "properties": { "location": { "type": "STRING", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" }, "description": { "type": "STRING", "description": "Any kind of description including category or genre, title words, attributes, etc." } }, "required": ["description"] } }, { "name": "find_theaters", "description": "find theaters based on location and optionally movie title which are is currently playing in theaters", "parameters": { "type": "OBJECT", "properties": { "location": { "type": "STRING", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" }, "movie": { "type": "STRING", "description": "Any movie title" } }, "required": ["location"] } }, { "name": "get_showtimes", "description": "Find the start times for movies playing in a specific theater", "parameters": { "type": "OBJECT", "properties": { "location": { "type": "STRING", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" }, "movie": { "type": "STRING", "description": "Any movie title" }, "theater": { "type": "STRING", "description": "Name of the theater" }, "date": { "type": "STRING", "description": "Date for requested showtime" } }, "required": ["location", "movie", "theater", "date"] } }] }] }'
模型的响应可能类似于以下内容:
对第二个模型请求的响应
{ "candidates": [ { "content": { "parts": [ { "text": " OK. Barbie is showing in two theaters in Mountain View, CA: AMC Mountain View 16 and Regal Edwards 14." } ] } } ], "usageMetadata": { "promptTokenCount": 9, "candidatesTokenCount": 27, "totalTokenCount": 36 } }
聊天示例
您可以使用函数调用来支持聊天会话。聊天会话在形式自由的对话场景中非常有用,这些场景中用户可能会询问后续问题。
如果您在聊天会话的上下文中使用函数调用,则会话会为您存储上下文,并将其包含在每个模型请求中。Vertex AI 会将互动的历史记录存储在客户端。
Python
此示例演示的是包含两个函数和两个连续提示的聊天场景。它使用 GenerativeModel
类及其方法。如需详细了解如何将 Vertex AI SDK for Python 与多模态模型搭配使用,请参阅 Vertex AI SDK for Python 中的多模态类简介。
如需了解如何安装或更新 Python,请参阅安装 Vertex AI SDK for Python。如需了解详情,请参阅 Python API 参考文档。
Java
在尝试此示例之前,请按照《Vertex AI 快速入门:使用客户端库》中的 Java 设置说明执行操作。 如需了解详情,请参阅 Vertex AI Java API 参考文档。
如需向 Vertex AI 进行身份验证,请设置应用默认凭据。 如需了解详情,请参阅为本地开发环境设置身份验证。
Go
在尝试此示例之前,请按照《Vertex AI 快速入门:使用客户端库》中的 Go 设置说明执行操作。 如需了解详情,请参阅 Vertex AI Go API 参考文档。
如需向 Vertex AI 进行身份验证,请设置应用默认凭据。 如需了解详情,请参阅为本地开发环境设置身份验证。
Node.js
在尝试此示例之前,请按照《Vertex AI 快速入门:使用客户端库》中的 Node.js 设置说明执行操作。 如需了解详情,请参阅 Vertex AI Node.js API 参考文档。
如需向 Vertex AI 进行身份验证,请设置应用默认凭据。 如需了解详情,请参阅为本地开发环境设置身份验证。
并行函数调用示例
对于“获取新德里和旧金山的天气详情?”等提示,模型可能会建议进行多项并行函数调用。如需查看支持并行函数调用的模型列表,请参阅支持的模型。
REST
此示例演示的是包含一个 get_current_weather
函数的场景。用户提示为“获取新德里和旧金山的天气详情?”。该模型建议使用两个并行 get_current_weather
函数调用:一个使用参数 New Delhi
,另一个使用参数 San Francisco
。
如需详细了解模型请求的参数,请参阅 Gemini API。
candidates { content { role: "model" parts: [ { function_call { name: "get_current_weather" args { fields { key: "location" value { string_value: "New Delhi" } } } } }, { function_call { name: "get_current_weather" args { fields { key: "location" value { string_value: "San Francisco" } } } } } ] } ... }
以下命令演示了如何向模型提供函数输出。将 my-project 替换为您的 Google Cloud 项目的名称。
模型请求
PROJECT_ID=my-project MODEL_ID=gemini-1.5-pro-002 VERSION="v1" LOCATION="us-central1" ENDPOINT=${LOCATION}-aiplatform.googleapis.com API="generateContent" curl -X POST -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Content-Type: application/json" https://${ENDPOINT}/${VERSION}/projects/${PROJECT_ID}/locations/${LOCATION}/publishers/google/models/${MODEL_ID}:${API} -d '{ "contents": [ { "role": "user", "parts": { "text": "What is difference in temperature in New Delhi and San Francisco?" } }, { "role": "model", "parts": [ { "functionCall": { "name": "get_current_weather", "args": { "location": "New Delhi" } } }, { "functionCall": { "name": "get_current_weather", "args": { "location": "San Francisco" } } } ] }, { "role": "user", "parts": [ { "functionResponse": { "name": "get_current_weather", "response": { "temperature": 30.5, "unit": "C" } } }, { "functionResponse": { "name": "get_current_weather", "response": { "temperature": 20, "unit": "C" } } } ] } ], "tools": [ { "function_declarations": [ { "name": "get_current_weather", "description": "Get the current weather in a specific location", "parameters": { "type": "object", "properties": { "location": { "type": "string", "description": "The city and state, e.g. San Francisco, CA or a zip code e.g. 95616" } }, "required": [ "location" ] } } ] } ] }'
模型创建的自然语言回复类似于以下内容:
模型回答
[ { "candidates": [ { "content": { "parts": [ { "text": "The temperature in New Delhi is 30.5C and the temperature in San Francisco is 20C. The difference is 10.5C. \n" } ] }, "finishReason": "STOP", ... } ] ... } ]
函数调用的最佳实践
函数名称
请勿在函数名称中使用英文句点 (.
)、短划线 (-
) 或空格字符。
请改用下划线 (_
) 字符或任何其他字符。
函数说明
清晰而详细地撰写函数说明。例如,对于 book_flight_ticket
函数:
- 下面是一个良好的函数说明示例:
book flight tickets after confirming users' specific requirements, such as time, departure, destination, party size and preferred airline
- 下面是一个不良的函数说明示例:
book flight ticket
函数参数
说明
编写清晰而详细的参数说明,包括首选格式或值等详细信息。例如,对于 book_flight_ticket
函数:
- 以下是
departure
参数说明的一个良好示例:Use the 3 char airport code to represent the airport. For example, SJC or SFO. Don't use the city name.
- 以下是
departure
参数说明的一个不良示例:the departure airport
类型
尽可能使用强类型参数来减少模型幻觉。例如,如果参数值来自有限集,请添加 enum
字段,而不是将值集放入说明中。如果参数值始终是整数,请将类型设置为 integer
,而不是 number
。
系统指令
使用包含日期、时间或位置参数的函数时,请在系统说明中添加当前日期、时间或相关位置信息(例如城市和国家/地区)。这样可以确保模型具有必要的上下文来准确处理请求,即使用户提示缺少详细信息也是如此。
用户提示
为获得最佳结果,请在用户提示前面加上以下详细信息:
- 模型的其他上下文,例如
You are a flight API assistant to help with searching flights based on user preferences.
- 有关如何及何时使用函数的详细信息或说明,例如
Don't make assumptions on the departure or destination airports. Always use a future date for the departure or destination time.
- 在用户查询不明确时询问澄清性问题的说明,例如
Ask clarifying questions if not enough information is available.
生成配置
对于温度参数,请使用 0
或其他较低值。这会指示模型生成置信度更高的结果并减少幻觉。
API 调用
如果模型建议调用一个会发送订单、更新数据库或以其他方式产生重大后果的函数,请在执行之前先向用户验证该函数调用。
价格
函数调用的价格取决于文本输入和输出中的字符数。如需了解详情,请参阅 Vertex AI 价格。
在本示例中,文本输入(提示)是指当前对话轮次的用户提示、当前对话轮次的函数声明以及对话历史记录。对话的历史记录包括查询、函数调用以及上一轮对话的函数回答。Vertex AI 会将对话历史记录截断为 32,000 个字符。
文本输出(回答)是指当前对话轮次的函数调用和文本回答。
后续步骤
请参阅 API 参考文档:函数调用。
了解 Vertex AI 扩展。