Skip to content
/ SAHEB Public
forked from padfoot18/SAHEB

Somaiya Admission Help and Enquiry Bot. A context based question answering chatbot to answer admission related queries.

Notifications You must be signed in to change notification settings

nehark99/SAHEB

Repository files navigation

Chatbot API

Installation steps:

Under Construction

Dummy API for chatting

dummy api hosted at http://13.233.158.98:8888/chat/

usage:
send a post request to http://13.233.158.98:8888/chat/ containing data as
question="user query"

sample usage using ajax in js

sample usage using ajax in jquery

Dummy API hosted for Key, Value CRUD operations

  1. Insert key-value = http://13.233.158.98:8888/api/v1/insert
    Request ⇒ “key=”+key+”&value=”+value
    Response ⇒ [ {‘key’:’abc’, ‘value’:100000 } , {‘key’: ‘def’, ‘value’: 100 } ]

  2. Update key-value = http://13.233.158.98:8888/api/v1/update
    KEY WILL NOT BE UPDATED
    Request ⇒ “key=”+key+”&value=”+value
    Response ⇒ [ {‘key’:’abc’, ‘value’:100000 } , {‘key’: ‘def’, ‘value’: 100 } ]

  3. Delete key = http://13.233.158.98:8888/api/v1/delete
    Request ⇒ “key=”+key
    Response ⇒ [ {‘key’:’abc’, ‘value’:100000 } , {‘key’: ‘def’, ‘value’: 100 } ]

  4. Read table = http://13.233.158.98:8888/api/v1/read
    Request ⇒ None
    Response ⇒ [ {‘key’:’abc’, ‘value’:100000 } , {‘key’: ‘def’, ‘value’: 100 } ]

sample usage using ajax

About

Somaiya Admission Help and Enquiry Bot. A context based question answering chatbot to answer admission related queries.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 36.0%
  • HTML 31.0%
  • JavaScript 17.2%
  • CSS 15.8%