syntax = "proto3"; package proto; //请求 message Text2VectorReq{ string text = 1; } //响应 message Text2VectorResp{ repeated float vector = 1; }