npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hubeet/converso

v0.0.3

Published

Framework that allows you to create conversational interfaces with natural language processing models.

Downloads

193

Readme

Converso.js

Converso.js es un framework que permite integrar interacciones conversacionales con modelos de lenguaje en aplicaciones de JavaScript. Facilita la creación de interfaces conversacionales para que los usuarios puedan interactuar con tu aplicación mediante lenguaje natural, mejorando la experiencia de usuario y accesibilidad.

Características

  • Definición de Acciones Conversacionales: Declara acciones personalizadas con descripciones y parámetros específicos.
  • Integración Simple: Compatible con cualquier proyecto de JavaScript o Node.js.
  • Respuestas Contextuales: Utiliza el poder de LlamaIndex para interpretar y responder a comandos de manera precisa.
  • Procesamiento Vectorial: Implementa índices vectoriales para una mejor comprensión del contexto.
  • Manejo Robusto de Errores: Sistema completo de gestión de errores para mantener la estabilidad.

Instalación

Instala Converso.js usando npm:

npm install converso.js

Uso Básico

Define una acción conversacional en tu aplicación:

const Converso = require('converso.js');

Converso.defineAction('CheckWeather', {
  description: 'Retrieve the weather forecast for a specified location',
  parameters: {
    location: {
      type: 'string',
      description: 'The location to get the weather for'
    }
  },
  handler: async (params) => {
    // Lógica para obtener el pronóstico del clima
    return await getWeatherForLocation(params.location);
  }
});

// Procesar una solicitud de lenguaje natural
const userRequest = '¿Cómo está el clima en Tokio?';
Converso.handleRequest(userRequest).then(response => {
  console.log(response); // Salida: "El clima en Tokio es..."
});

Documentación

Definir una Acción

Cada acción tiene una descripción y un conjunto de parámetros. Se define utilizando Converso.defineAction():

Converso.defineAction('NombreDeAccion', {
  description: 'Breve descripción de la acción',
  parameters: {
    nombreParametro: {
      type: 'tipo',
      description: 'Descripción del parámetro'
    }
  },
  handler: async (params) => {
    // Lógica personalizada de la acción
  }
});

Procesar Solicitudes

Utiliza Converso.handleRequest() para procesar comandos de lenguaje natural:

Converso.handleRequest('Comando de ejemplo').then(response => {
  console.log(response);
});

API General

Converso.defineAction()

Define una acción conversacional.

Converso.defineAction('NombreDeAccion', {
  // ...
});

Converso.handleRequest()

Procesa una solicitud de lenguaje natural y devuelve una respuesta.

Converso.getActions()

Devuelve un array con todas las acciones definidas.

const actions = Converso.getActions();
console.log(actions);

Contribuir

Las contribuciones son bienvenidas. Por favor, sigue las guías de contribución y mantén el estilo de código consistente.

Licencia

Este proyecto está licenciado bajo la Licencia MIT.