Spaces:
Sleeping
Sleeping
File size: 3,462 Bytes
8b7cf3c e7c98db 7eb9d5e 41f9a38 622720c 952731e 622720c 7eb9d5e 8b7cf3c 622720c 8b7cf3c 41f9a38 8b7cf3c 7eb9d5e 8b7cf3c 952731e c6ec965 952731e 2c93483 952731e 2c93483 952731e 8b7cf3c 622720c |
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
import gradio as gr
import requests
def send_message_with_secret(message, history, api_secret, bot_id):
if not api_secret.strip():
return "Please enter your API secret in the field above."
if not bot_id.strip():
return "Please enter your Bot ID."
API_URL = "https://api.kindroid.ai/v1/send-message"
headers = {
"Authorization": f"Bearer {api_secret}",
"Content-Type": "application/json"
}
payload = {
"ai_id": bot_id,
"message": message
}
try:
response = requests.post(API_URL, headers=headers, json=payload)
response.raise_for_status()
return response.content.decode()
except requests.exceptions.RequestException as e:
return f"An error occurred: {e}"
with gr.Blocks(css="""
.message.user {
background-color: #2563eb !important;
color: white !important;
border-radius: 12px 12px 0 12px !important;
margin-left: auto !important;
margin-right: 1rem !important;
}
.message.bot {
background-color: #f3f4f6 !important;
color: #000000;
border-radius: 12px 12px 12px 0 !important;
margin-right: auto !important;
margin-left: 1rem !important;
}
.message.user, .message.bot {
padding: 1rem !important;
margin-bottom: 1rem !important;
max-width: 80% !important;
display: inline-block !important;
}
.message-wrap {
display: flex !important;
flex-direction: column !important;
}
.contain {
margin: 0 auto;
max-width: 800px;
padding: 20px;
}
.input-row {
margin-bottom: 20px;
}
""") as app:
with gr.Column(elem_classes="contain"):
gr.Markdown("## Chat with your Kin")
with gr.Column(elem_classes="input-row"):
api_secret = gr.Textbox(
label="API Secret",
placeholder="Enter your API secret...",
type="password",
show_label=True
)
bot_id = gr.Textbox(
label="Bot ID",
placeholder="Enter your Bot ID...",
show_label=True
)
chatbot = gr.Chatbot(
value=[],
type='messages',
height=400
)
with gr.Row():
msg = gr.Textbox(
label="Message",
placeholder="Type your message here...",
show_label=False,
scale=9
)
send_btn = gr.Button("Send", scale=1)
def respond(message, chat_history, api_secret, bot_id):
if not message:
return chat_history, ""
bot_response = send_message_with_secret(message, chat_history, api_secret, bot_id)
chat_history.append({"role": "user", "content": message})
chat_history.append({"role": "assistant", "content": bot_response})
return chat_history, ""
msg.submit(
respond,
inputs=[msg, chatbot, api_secret, bot_id],
outputs=[chatbot, msg]
)
send_btn.click(
respond,
inputs=[msg, chatbot, api_secret, bot_id],
outputs=[chatbot, msg]
)
if __name__ == "__main__":
app.launch() |