Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hkjang/node-red-contrib-dialoqbase
https://github.com/hkjang/node-red-contrib-dialoqbase
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hkjang/node-red-contrib-dialoqbase
- Owner: hkjang
- License: mit
- Created: 2024-03-27T08:15:00.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-27T08:17:50.000Z (10 months ago)
- Last Synced: 2024-04-29T03:45:42.494Z (9 months ago)
- Language: JavaScript
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-red-contrib-dialoqbase
================Node-RED node for dialoqbase
## Install
To install the stable version use the `Menu - Manage palette - Install`
option and search for node-red-contrib-dialoqbase, or run the following
command in your Node-RED user directory, typically `~/.node-red`npm install node-red-contrib-dialoqbase
## Wrapper dialoqbase API
- https://github.com/n4ze3m/dialoqbase-js## Sample parameters
```js
msg.api = 'bot';
msg.method = 'post' // get, post, put, delete, default:get
msg.params = {
name: "Test Bot 2",
model: "claude-3-opus-20240229",
embedding: "nomic-ai/nomic-embed-text-v1.5"
}
return msg;
```## Sample Flow
You can make this json string into a flow by using the node-red flow import function.- [sample.json](examples/sample.json)
![alt](examples/sample.png)
![alt](examples/result.png)