1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| tools = [ { "type": "function", "function": { "name": "search_flights", "description": "搜索航班信息", "parameters": { "type": "object", "properties": { "from_city": {"type": "string", "description": "出发城市"}, "to_city": {"type": "string", "description": "目的城市"}, "date": {"type": "string", "description": "日期,格式:YYYY-MM-DD"} }, "required": ["from_city", "to_city", "date"] } } }, { "type": "function", "function": { "name": "search_hotels", "description": "搜索酒店信息", "parameters": { "type": "object", "properties": { "city": {"type": "string", "description": "城市"}, "check_in": {"type": "string", "description": "入住日期"}, "check_out": {"type": "string", "description": "退房日期"}, "guests": {"type": "integer", "description": "入住人数"} }, "required": ["city", "check_in", "check_out"] } } }, { "type": "function", "function": { "name": "book_reservation", "description": "预订航班或酒店", "parameters": { "type": "object", "properties": { "type": {"type": "string", "enum": ["flight", "hotel"]}, "reservation_id": {"type": "string", "description": "预订项目ID"}, "passenger_name": {"type": "string", "description": "乘客/住客姓名"} }, "required": ["type", "reservation_id", "passenger_name"] } } } ]
|