全部产品
Search
文档中心

向量检索服务 Milvus 版:文本生成

更新时间:Sep 09, 2026

AI_TEXT_GENERATE 函数可根据 Prompt 为每条文本生成内容,适用于商品标题、营销文案和字段补全。集成于 Collection 时,写入时自动把生成结果写入目标字段。

命令格式

REST 接口

POST /v2/vectordb/ai/text_generate
Content-Type: application/json

{
  "model_name": "<模型名>",
  "texts": ["<文本>"],
  "params": {"prompt": "<提示词>"}
}

Python

schema = MilvusClient.create_schema(auto_id=True, enable_dynamic_field=False)
schema.add_field("id", DataType.INT64, is_primary=True)
schema.add_field("content", DataType.VARCHAR, max_length=4096)
schema.add_field("generated", DataType.VARCHAR, max_length=1024)
schema.add_field("dummy_vector", DataType.FLOAT_VECTOR, dim=2)
schema.add_function(
    Function(
        name="generate_content",
        function_type=texttransform_function_type(),
        input_field_names=["content"],
        output_field_names=["generated"],
        params={
            "provider": "aliyun_milvus",
            "model_name": "<模型名>",
            "task": "ai_text_generate",
            "prompt": "Write a concise marketing sentence: ${content}",
            "temperature": "0.3",
            "enable_thinking": "false",
        },
    )
)

参数说明

参数

说明

model_name

必填。已配置的文本模型名称,例如 qwen3.7-max;REST 也兼容 model

texts

REST 必填。待生成文本数组,每项对应一条生成结果。

prompt

Schema 必填,REST 选填。REST 省略时等同 ${text};Schema 中必须引用全部输入字段。

temperature / enable_thinking

选填。分别控制生成随机性和思考模式。

max_concurrency / timeout_sec

选填。控制单条调用的并发数和超时时间。

output_mapping

仅 Schema 选填。可将模型返回的 JSON 映射到多个 VARCHARTEXTJSON 输出字段。

provider / task

仅 Collection Function 必填,固定为 aliyun_milvusai_text_generate

返回值说明

REST 在 data.output.outputs 返回与 texts 同序的生成文本。Schema 未配置 output_mapping 时将结果写入一个文本字段;配置该参数时,模型必须返回合法 JSON。

使用示例:为商品描述生成标题

电商运营希望在商品写入时自动补齐一个简洁标题。下面用 REST 批量生成两条营销文案,并用 Collection Function 在写入时自动生成。

REST 接口

#!/usr/bin/env bash
set -euo pipefail

MILVUS_REST_BASE_URL="http://c-xxxx.milvus.aliyuncs.com:19530"
MILVUS_AUTH_TOKEN="<yourUsername>:<yourPassword>"

post_json() {
  local path="$1"
  local body="$2"
  curl -X POST \
    "$MILVUS_REST_BASE_URL$path" \
    -H "Authorization: Bearer $MILVUS_AUTH_TOKEN" \
    -H "Content-Type: application/json" \
    -d "$body"
}

MODEL_NAME="qwen3.7-max"

BODY=$(cat <<JSON
{
  "model_name": "$MODEL_NAME",
  "texts": [
    "A lightweight laptop with a titanium alloy shell.",
    "An ergonomic mechanical keyboard designed for programmers."
  ],
  "params": {
    "prompt": "Write a concise marketing sentence for this product: \${text}",
    "temperature": 0.3,
    "enable_thinking": false
  }
}
JSON
)

RESPONSE_BODY="$(post_json "/v2/vectordb/ai/text_generate" "$BODY")"
if command -v jq >/dev/null 2>&1; then
  echo "$RESPONSE_BODY" | jq .
  [ "$(echo "$RESPONSE_BODY" | jq -r '.code // -1')" = "0" ] || exit 1
else
  echo "$RESPONSE_BODY"
fi
# 预期:data.output.outputs 返回与 texts 同序的两条营销文案

Python

安装 PyMilvus 后,将 MILVUS_URIMILVUS_TOKEN 占位值替换为实际集群地址和 token 后运行;示例已内联公共辅助函数。

from __future__ import annotations

from typing import Any

from pymilvus import DataType, Function, FunctionType, MilvusClient

MILVUS_URI = "http://c-xxxx.milvus.aliyuncs.com:19530"
MILVUS_TOKEN = "<yourUsername>:<yourPassword>"

DUMMY_VECTOR_DIM = 2
TEXTTRANSFORM_FUNCTION_TYPE = 9

def texttransform_function_type() -> Any:
    for type_name in ("TEXTTRANSFORM", "TEXT_TRANSFORM", "TextTransform"):
        function_type = getattr(FunctionType, type_name, None)
        if function_type is not None:
            return function_type
    # 阿里云 Milvus 将 TEXTTRANSFORM 作为托管扩展(函数类型值 9)提供;
    # 部分 pymilvus 版本尚未内置该枚举成员,而 Function(...) 通过 FunctionType(...) 校验。
    existing = getattr(FunctionType, "_value2member_map_", {}).get(TEXTTRANSFORM_FUNCTION_TYPE)
    if existing is not None:
        return existing
    extension = int.__new__(FunctionType, TEXTTRANSFORM_FUNCTION_TYPE)
    extension._name_ = "TEXTTRANSFORM"
    extension._value_ = TEXTTRANSFORM_FUNCTION_TYPE
    FunctionType._value2member_map_[TEXTTRANSFORM_FUNCTION_TYPE] = extension
    FunctionType._member_map_["TEXTTRANSFORM"] = extension
    return extension

def add_id(schema: Any) -> None:
    schema.add_field("id", DataType.INT64, is_primary=True)

def add_dummy_vector(schema: Any) -> None:
    schema.add_field("dummy_vector", DataType.FLOAT_VECTOR, dim=DUMMY_VECTOR_DIM)

def run_texttransform_example(*, client, collection_name, input_fields, output_field, function_name, function_params, rows) -> None:
    if client.has_collection(collection_name):
        client.drop_collection(collection_name)
    schema = MilvusClient.create_schema(auto_id=True, enable_dynamic_field=False)
    add_id(schema)
    for name, data_type, max_length in input_fields:
        field_params = {"max_length": max_length} if max_length is not None else {}
        schema.add_field(name, data_type, **field_params)
    output_name, output_data_type, output_max_length = output_field
    output_params = {"max_length": output_max_length} if output_max_length is not None else {}
    schema.add_field(output_name, output_data_type, **output_params)
    add_dummy_vector(schema)
    schema.add_function(
        Function(
            name=function_name,
            function_type=texttransform_function_type(),
            input_field_names=[name for name, _, _ in input_fields],
            output_field_names=[output_name],
            params=function_params,
        )
    )
    index_params = client.prepare_index_params()
    index_params.add_index(field_name="dummy_vector", index_type="AUTOINDEX", metric_type="COSINE")
    client.create_collection(collection_name=collection_name, schema=schema, index_params=index_params)
    client.insert(collection_name, rows)
    client.flush(collection_name)
    fields = [name for name, _, _ in input_fields] + [output_name]
    for row in client.query(collection_name, filter="", output_fields=fields, limit=len(rows)):
        print(row)

MODEL_NAME = "qwen3.7-max"
client = MilvusClient(uri=MILVUS_URI, token=MILVUS_TOKEN)

run_texttransform_example(
    client=client,
    collection_name="simple_ai_text_generate",
    input_fields=[("content", DataType.VARCHAR, 4096)],
    output_field=("generated", DataType.VARCHAR, 1024),
    function_name="generate_content",
    function_params={"provider": "aliyun_milvus", "model_name": MODEL_NAME, "task": "ai_text_generate", "prompt": "Write a concise marketing sentence: ${content}", "temperature": "0.3", "enable_thinking": "false"},
    rows=[{"content": "A lightweight laptop with a titanium alloy shell.", "dummy_vector": [0.1, 0.2]}],
)
# 预期:query 返回包含 content 与 generated 的记录,generated 为一句营销文案

预期结果:REST 返回两条营销文案;Python 打印包含 contentgenerated 的写入记录,generated 为一句营销文案。