Your go-to solution for creating and integrating chatbots seamlessly into your websites and applications. Devbots can be used from devbots.vercel.app and also available as CLI tool to create your prompted chatbot and easy integration into your websites.
To customize your devbot:
- Go to devbots.vercel.app
- Sign in to your account and navigate to dashboard
- Configure your prompt with title,logo and description
- Copy your API key
- Integrate the DevBot component in your application
For more information explore DevBots Docs
-
npm
npm i devbots
-
pnpm
pnpm add devbots
-
yarn
yarn add devbots
-
bun
bun add devbots
Prop | Type | Description | Required |
---|---|---|---|
apiKey | string | Your DevBots API key | Yes |
title | string | Chat widget title | Yes |
-
React
import { DevBot } from 'devbots'; function App() { return ( <div> <DevBot apiKey="API_KEY" title="TITLE" /> </div> ); }
Example File : App.tsx
Deployed Link : devbots-example-react -
Html
<script src="https://cdn.jsdelivr.net/gh/devhub-ai/cdns@master/devbots-chatbot.js"></script> <script> document.addEventListener('DOMContentLoaded', function () { new DevBot('API_KEY', 'TITLE'); }); </script>
Example File : index.html
Deployed Link : devbots-example-html
npm i -g devbots
-
help
devbots help
- It will show you available commands.
-
create devbot
devbots create "title" "prompt"
- It will generate an
API_KEY
.
- It will generate an
-
chat with devbot
devbots chat "API_KEY" "query"
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Need help? Visit our documentation or contact us.
We welcome contributions! Please feel free to submit a Pull Request.