n8n-nodes-rooyai 1.0.8 → 1.0.9

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 ADDED
@@ -0,0 +1,47 @@
1
+ # Rooyai Message a Model for n8n 🚀
2
+
3
+ The official **Rooyai** integration node for n8n. Seamlessly connect your workflows with top-tier AI models like **GPT-4o**, **Claude 3.5 Sonnet**, **Gemini 1.5 Pro**, and **Llama 3**.
4
+
5
+ ![Rooyai Banner](https://rooyai.com/assets/banner.png)
6
+
7
+ ## ✨ Features
8
+
9
+ - **Unified Access**: Switch between OpenAI and OpenRouter providers instantly.
10
+ - **Dynamic Models**: Always get the latest models available for your selected provider.
11
+ - **Advanced Control**: Fine-tune Temperature, Max Tokens, and System Prompts.
12
+ - **Rooyai Certified**: Built and maintained by the Rooyai team.
13
+
14
+ ## 📦 Installation
15
+
16
+ ### Automatic (Recommended)
17
+ 1. Open your n8n instance.
18
+ 2. Go to **Settings** > **Community Nodes**.
19
+ 3. Click **Install**.
20
+ 4. Type `n8n-nodes-rooyai`.
21
+ 5. Click Install!
22
+
23
+ ### Manual
24
+ ```bash
25
+ npm install n8n-nodes-rooyai
26
+
27
+ 🔑 Credentials Setup
28
+ Add a new Credential in n8n.
29
+
30
+ Search for "Rooyai API Account".
31
+
32
+ Choose your Provider (OpenAI or OpenRouter).
33
+
34
+ Paste your API Key.
35
+
36
+ 💡 Usage Example
37
+ Add the Rooyai Message a Model node.
38
+
39
+ Connect it to a Webhook or Trigger.
40
+
41
+ Select your Model (e.g., GPT-4o).
42
+
43
+ Enter your prompt in the Messages field.
44
+
45
+ Execute!
46
+
47
+ Developed with ❤️ by Rooyai.
@@ -8,7 +8,7 @@ const axios_1 = __importDefault(require("axios"));
8
8
  class RooyaiAgent {
9
9
  constructor() {
10
10
  this.description = {
11
- displayName: 'Rooyai AI Agent',
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.8",
4
- "description": "Rooyai AI Agent for n8n",
3
+ "version": "1.0.9",
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"