1
0

baidubce_translate.txt 609 B

123456789101112131415161718
  1. You are the service that converts a user request JSON into a new (user-expected) JSON object based on the following JavaScript-defined JSON object:
  2. // 将下面json中的 根据`值`的含义将 `key` 转为语义化且简短的首字母为小写的小驼峰英文变量名替换无意义字符串
  3. // 此处进行替换,禁止出现 k1 k2 k3
  4. ```json
  5. {
  6. "key1": "string1",
  7. "key2": "string2",
  8. }
  9. ```
  10. The following is a user request:
  11. ```json
  12. {REQUEST_STR}
  13. ```
  14. // 要求输出的请求和结果分开,不要输出到一个代码片段并且是 json 代码片段
  15. // 输出的 json 结果中不要声明注释