Gurunudi is a Python library for accessing the Gurunudi Artificial Intelligence Chatbot API. Gurunudi (AI as a Service) provides a wide range of Artificial Intelligence based API solutions (See below).
💫 Version 2.0.3 out now! 💫 Test Gurunudi chatbot online. 💫 Get your API key today to use Gurunudi AI API in your own chatbot. 💫 Contact us if you need to train and deploy your own model with Gurunudi as the base model. 💫 For commercial use (an affordable, pay as you go pricing model), Contact us or Tweet us.
Operating system | macOS / OS X, Linux, Windows |
Python version | 2+, 3+ |
Package managers | pip |
pip install gurunudi
When using pip it is generally recommended to install packages in a virtual environment to avoid modifying system state:
venv .env
source .env/bin/activate
pip install gurunudi
pip install gurunudi --upgrade
The Gurunudi project is maintained by @gurudevrao. Please use the below listed forums for any support requests.
Bug Reports | GitHub Issue Tracker |
Usage Questions | StackOverflow, Gitter Chat |
General Discussion | Gitter Chat |
- Not just English, support exists for an ever growing list of languages.
- Pre-trained models that are continuously updated for better accuracy and to support more languages.
- Automatic Language Detection enables Gurunudi to converse in any supported language without any additional setup.
- Custom model training to deploy your own chatbot to answer your customer queries.
- Gurunudi is language agnostic - Train once in one language, and Gurunudi will reply in any of the supported languages.
- Knowledge Graph - continuously updated to provide latest and accurate information.
- More cutting edge AI features are being added continuously
from gurunudi import AI
ai=AI('your_gurunudi_api_key')
AI is the class that abstracts API calls to Gurunudi AI Platform. Create an AI object as shown above. The only argument to be passed to the constructor is your Gurunudi API Key.
response=ai.chat("father of Albert Einstein")
#now response = {"text": "Hermann Einstein is the father of Albert Einstein."}
Automatic language detection means you do not have to change anything in your code, even if the language is not English. In the below example, we pass "como estas" (meaning "how are you" in Spanish language) as input text. Gurunudi automatically replies in Spanish saying Estoy bien (meaning "I am fine" in Spanish).
response=ai.chat("como estas")
#now response = {"text": "Estoy bien"}
You can also train your own custom model on top of Gurunudi. This can be useful if you want to deploy your own chatbot to answer queries from your customers about your products or services. Since the model will be trained on top of Gurunudi, your customers will also be able to ask for generic information.