Create your own Jarvis or Doraemon with our API
Task deciding model for changing query into multiple tasks
LLM for continued conversations with chathistory
//[START]
const config = require('./config.json');
const axios = require('axios');
app.post('/chat_backend', async (req, res) => {
const { message } = req.body;
if (!message) return res.status(400).send("No message provided");
const tasksResponse = await axios.post(`${config.api_server}/decidetask`, { query: message });
});
//[END]
$ npm install axios
Create a configuration file with your API keys and preferences.
Make requests to api , write modules for task decision, chatting and other scripts.
Run your application and start interacting with your new AI companion.
We provide api to make robots; your own jarvis or doreamon.
Emphasizes an intelligent core interface for developers.
Gotta figure it out.
Simple API endpoints for quick integration with any system.