Skip to contents

此函数用于构建智谱AI的批处理任务请求

Usage

zhipuai_batch_build(
  ...,
  request_id = NULL,
  model = "glm-4-plus",
  system_prompt = "请根据提供的数据执行批处理任务",
  user_prompt = NULL,
  temperature = 0,
  endpoint = "/v4/chat/completions"
)

Arguments

...

批处理任务的数据参数

request_id

字符串,请求的唯一标识符,默认为NULL时会根据数据自动生成

model

字符串,使用的模型名称,默认为"glm-4-plus"

system_prompt

字符串,系统提示语,默认为"请根据提供的数据执行批处理任务"

user_prompt

字符串,用户提示语,默认为NULL时会将数据转换为JSON字符串

temperature

数值,采样温度,控制输出的随机性,默认为0

endpoint

字符串,API端点,默认为"/v4/chat/completions"

Value

返回JSON格式的请求体字符串

Examples

if (FALSE) { # \dontrun{
task <- zhipuai_build_batch_task(
  data1 = "示例数据1",
  data2 = "示例数据2",
  model = "glm-4-plus"
)
} # }