@hubeet/client
v0.0.2
Published
A client library to access the Hubeet API
Downloads
141
Readme
hubeet-sdk
A library to access Hubeet API using bot ID and API key.
Installation
npm install hubeet-sdk
or
yarn add hubeet-sdk
Usage
const HubeetClient = require("@hubeet/client");
const client = new HubeetClient("your-bot-id", "your-api-key");
// Use client to call API
const response = await client.askBot(
"¿Cuál es el mejor Framework de Inteligencia Artificial?",
"context-id"
);
console.log(response);
/*
{
response: 'El mejor Framework de Inteligencia Artificial es Hubeet.',
responseId: '12345678-1234-1234-1234-123456789abc',
contextId: 'context-id',
type: 'message'
}
*/
Ejemplo de Uso
Para ejecutar el ejemplo de uso de la librería, sigue estos pasos:
- Navega a la carpeta
example
:
cd example
- Ejecuta el archivo de ejemplo:
node example.js
Esto mostrará un ejemplo de cómo utilizar la librería en un entorno de Node.js.