tools:
  - name: query_weather
    description: "

      \    输入指定城市的英文名称，返回今日天气查询结果。

      \    :param city: 城市名称（需使用英文）

      \    :return: 格式化后的天气信息

      \    "
    inputSchema:
      type: object
      title: query_weatherArguments
      required:
        - city
      properties:
        city:
          type: string
          title: City
  - name: add
    description: Add two numbers
    inputSchema:
      type: object
      title: addArguments
      required:
        - a
        - b
      properties:
        a:
          type: integer
          title: A
        b:
          type: integer
          title: B
