首先定义一个input.proto文件
内容如下
syntax = "proto3";message InputData {int32 UserId = 1; // 将 number 改为 int32 或 int64string UserInput = 2;string DrunkState = 3;
}message ResponseData {string AIResponse = 1;string prompt = 2;string emotion = 3;
}
前端安装的包
npm install -g protobufjs-cli
后端安装的包
npm install protobufjs
# 生成 Python 代码
protoc --python_out=. input.proto
# 生成 JSON 文件供 JavaScript 使用
npx pbjs -t json -o input_pb.json input.proto