recommend_poi

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

recommend_poi

recommend_poi

This skill is used by the dynamic structured output demo.
这个Skill用于动态结构化输出演示。

Output JSON Schema

输出JSON Schema

json
{
  "type": "object",
  "properties": {
    "poi": {
      "type": "string",
      "description": "Point of interest"
    },
    "city": {
      "type": "string",
      "description": "City name"
    },
    "score": {
      "type": "integer",
      "description": "A deterministic score"
    }
  },
  "required": [
    "poi",
    "city",
    "score"
  ],
  "additionalProperties": false
}
json
{
  "type": "object",
  "properties": {
    "poi": {
      "type": "string",
      "description": "Point of interest"
    },
    "city": {
      "type": "string",
      "description": "City name"
    },
    "score": {
      "type": "integer",
      "description": "A deterministic score"
    }
  },
  "required": [
    "poi",
    "city",
    "score"
  ],
  "additionalProperties": false
}

Commands

命令

Print JSON result to stdout:
bash
cat result.json
将JSON结果打印到标准输出:
bash
cat result.json