@eko-ai/eko-nodejs 3.0.0-alpha.6 → 3.0.0-alpha.8

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.
Files changed (2) hide show
  1. package/README.md +8 -7
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,8 +21,9 @@ Eko (pronounced like 'echo') is a production-ready JavaScript framework that ena
21
21
  |--------------------------------------|-------|------------|--------------|----------|--------|
22
22
  | **Supported Platform** | **All platform** | Server side | Browser | Web | Web |
23
23
  | **One sentence to multi-step workflow** | ✅ | ❌ | ✅ | ❌ | ❌ |
24
- | **Intervenability** | ✅ | ✅ | ❌ | ❌ | ❌ |
25
- | **Development Efficiency** | **High** | Low | Middle | Middle | Low |
24
+ | **Intervenability** | ✅ | ✅ | ❌ | ❌ | ❌ |
25
+ | **Task Parallel** | | | | | |
26
+ | **Development Efficiency** | **High** | Low | Middle | Middle | Low |
26
27
  | **Task Complexity** | **High** | High | Low | Middle | Middle | Middle |
27
28
  | **Open-source** | ✅ | ✅ | ✅ | ✅ | ❌ |
28
29
  | **Access to private web resources** | ✅ | ❌ | ❌ | ❌ | ❌ |
@@ -61,6 +62,11 @@ const llms: LLMs = {
61
62
  model: "claude-sonnet-4-20250514",
62
63
  apiKey: "your-api-key"
63
64
  },
65
+ gemini: {
66
+ provider: "google",
67
+ model: "gemini-2.5-pro",
68
+ apiKey: "your-api-key"
69
+ },
64
70
  openai: {
65
71
  provider: "openai",
66
72
  model: "gpt-5",
@@ -107,11 +113,6 @@ Eko can be used in multiple environments:
107
113
  ## Community and Support
108
114
 
109
115
  - Report issues on [GitHub Issues](https://github.com/FellouAI/eko/issues)
110
- - Join our [slack community discussions](https://join.slack.com/t/eko-ai/shared_invite/zt-2xhvkudv9-nHvD1g8Smp227sM51x_Meg)
111
- - Join our [Discard](https://discord.gg/XpFfk2e5):
112
- ![](discard.png)
113
- - Contribute tools and improvements
114
- - Share your use cases and feedback
115
116
 
116
117
  [![Star History Chart](https://api.star-history.com/svg?repos=FellouAI/eko&type=Date)](https://star-history.com/#FellouAI/eko&Date)
117
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eko-ai/eko-nodejs",
3
- "version": "3.0.0-alpha.6",
3
+ "version": "3.0.0-alpha.8",
4
4
  "description": "Empowering language to transform human words into action.",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
@@ -37,7 +37,7 @@
37
37
  "chromium-bidi": "^0.12.0",
38
38
  "glob": "^11.0.2",
39
39
  "playwright": "^1.52.0",
40
- "@eko-ai/eko": "3.0.0-alpha.6"
40
+ "@eko-ai/eko": "3.0.0-alpha.8"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@rollup/plugin-commonjs": "^28.0.3",