Spaces:
Runtime error
Runtime error
File size: 809 Bytes
b708982 |
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 |
info:
title: Hotel Booking AI API
version: 1.0.0
paths:
/voice_ai:
post:
summary: Process Voice Input for AI
requestBody:
content:
audio/wav:
schema:
type: string
responses:
200:
description: AI response
content:
text/plain:
schema:
type: string
/chatbot_ai:
post:
summary: Chat with AI Chatbot
requestBody:
content:
application/json:
schema:
type: object
properties:
user_input:
type: string
responses:
200:
description: Chatbot response
content:
text/plain:
schema:
type: string
|