n8n-nodes-rooyai 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -0
- package/dist/RooyaiAgent.node.js +1 -1
- package/package.json +19 -4
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Rooyai Message a Model 🚀
|
|
2
|
+
|
|
3
|
+
**One Node. All Models.**
|
|
4
|
+
|
|
5
|
+
Official integration from [Rooyai](https://rooyai.com). We bring all top-tier AI providers into a single, easy-to-use n8n node. Whether you need GPT-4, Claude, or Llama, just select and chat.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## ⚡ Why use this?
|
|
10
|
+
|
|
11
|
+
- **All-in-One Access**: Don't juggle multiple nodes. Access OpenAI, Anthropic, Google, and Meta models from one place.
|
|
12
|
+
- **Simple & Fast**: Just pick your provider (like OpenRouter or OpenAI), choose a model, and send a message.
|
|
13
|
+
- **Rooyai Powered**: Optimized for seamless integration with Rooyai services.
|
|
14
|
+
|
|
15
|
+
## 🛠️ How to use
|
|
16
|
+
|
|
17
|
+
1. **Install**: Search for `n8n-nodes-rooyai` in n8n Community Nodes.
|
|
18
|
+
2. **Setup**: Add your API Key in the "Rooyai API Account" credential.
|
|
19
|
+
3. **Chat**: Select your model and start building!
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
### Supported Providers
|
|
24
|
+
- **OpenAI** (GPT-4o, GPT-4 Turbo, etc.)
|
|
25
|
+
- **OpenRouter** (Claude 3.5, Gemini 1.5, Llama 3, DeepSeek, and more)
|
|
26
|
+
|
|
27
|
+
> _Simplifying AI automation for everyone._
|
|
28
|
+
>
|
|
29
|
+
> Developed by **Rooyai**.
|
package/dist/RooyaiAgent.node.js
CHANGED
|
@@ -8,7 +8,7 @@ const axios_1 = __importDefault(require("axios"));
|
|
|
8
8
|
class RooyaiAgent {
|
|
9
9
|
constructor() {
|
|
10
10
|
this.description = {
|
|
11
|
-
displayName: 'Rooyai
|
|
11
|
+
displayName: 'Rooyai Message a Model',
|
|
12
12
|
name: 'rooyaiAgent',
|
|
13
13
|
icon: 'file:rooyai.svg',
|
|
14
14
|
group: ['transform'],
|
package/package.json
CHANGED
|
@@ -1,14 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-nodes-rooyai",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Rooyai
|
|
3
|
+
"version": "1.0.10",
|
|
4
|
+
"description": "Rooyai Message a Model - Official n8n node for Rooyai AI services. Chat with GPT-4, Claude, Gemini, and Llama models directly.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"n8n-community-node-package"
|
|
6
|
+
"n8n-community-node-package",
|
|
7
|
+
"rooyai",
|
|
8
|
+
"ai",
|
|
9
|
+
"chat",
|
|
10
|
+
"llm",
|
|
11
|
+
"openai",
|
|
12
|
+
"openrouter",
|
|
13
|
+
"gpt-4",
|
|
14
|
+
"claude",
|
|
15
|
+
"automation"
|
|
7
16
|
],
|
|
8
17
|
"license": "MIT",
|
|
9
18
|
"author": {
|
|
10
19
|
"name": "Rooyai",
|
|
11
|
-
"email": "contact@rooyai.com"
|
|
20
|
+
"email": "contact@rooyai.com",
|
|
21
|
+
"url": "https://rooyai.com"
|
|
22
|
+
},
|
|
23
|
+
"homepage": "https://rooyai.com",
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "https://github.com/rooyai/n8n-nodes-rooyai"
|
|
12
27
|
},
|
|
13
28
|
"community": {
|
|
14
29
|
"author": "Rooyai"
|