Spaces:
Runtime error
Runtime error
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 | |