So, I have created a chatbot using Gardio, using chatbot Template.
It is running Zephyr, and works better than Falcon.AI
I am happy.
But, I want to access the thing via API, specifically, send questions from a JS app ! I must use vanila js. No NPM or stuff.
I click on the small button “Use with API” below the page. It opens the pop up. I go under Bash, and i see the following curl code:
curl -X POST https://vernalsystems-valkyrie-svelhana.hf.space/gradio_api/call/chat -s -H "Content-Type: application/json" -d '{
"data": [
"What is the Capital city of Canada?",
"Hello!!",
1,
0.1,
0.1
]}' \
| awk -F'"' '{ print $4}' \
| read EVENT_ID; curl -N https://vernalsystems-valkyrie-svelhana.hf.space/gradio_api/call/chat/$EVENT_ID
But it is responding with a HTML file to the end of:
404
Sorry, we can’t find the page you are looking for.
Now, I change the visibility to public and try again. I only get a"EventID" back. Example:
curl -X POST https://vernalsystems-valkyrie-svelhana.hf.space/gradio_api/call/chat -s -H "Content-Type: application/json" -d '{
"data": [
"What is the capital city of Canada?",
"Hello!!",
512,
0.6,
0.6
]}'
I get back : {"event_id":"bedd427ca76042b7b1......... etc"}
What can be done, please? Thank you.