@elizaos/plugin-groq 2.0.3-beta.2 → 2.0.3-beta.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-groq",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/node/index.node.js",
6
6
  "module": "dist/node/index.node.js",
@@ -35,6 +35,7 @@
35
35
  },
36
36
  "sideEffects": false,
37
37
  "files": [
38
+ "registry-entry.json",
38
39
  "dist",
39
40
  "auto-enable.ts"
40
41
  ],
@@ -51,11 +52,12 @@
51
52
  },
52
53
  "dependencies": {
53
54
  "@ai-sdk/groq": "^3.0.4",
54
- "@elizaos/core": "2.0.3-beta.2",
55
+ "@elizaos/core": "2.0.3-beta.4",
55
56
  "ai": "^6.0.0"
56
57
  },
57
58
  "devDependencies": {
58
59
  "@biomejs/biome": "^2.4.14",
60
+ "@elizaos/test-harness": "2.0.3-beta.4",
59
61
  "@types/bun": "^1.3.10",
60
62
  "@types/node": "^25.0.3",
61
63
  "typescript": "^6.0.3",
@@ -67,6 +69,7 @@
67
69
  "clean": "rm -rf dist",
68
70
  "format": "bunx @biomejs/biome format --write .",
69
71
  "test": "vitest run --config vitest.config.ts",
72
+ "test:harness": "bunx vitest run --config vitest.harness.config.ts",
70
73
  "lint": "bunx @biomejs/biome check --write --unsafe .",
71
74
  "lint:check": "bunx @biomejs/biome check .",
72
75
  "build": "bun run build.ts",
@@ -134,5 +137,5 @@
134
137
  "node": "Node.js build available via exports.node"
135
138
  }
136
139
  },
137
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
140
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
138
141
  }
@@ -0,0 +1,93 @@
1
+ {
2
+ "id": "groq",
3
+ "name": "Groq",
4
+ "description": "Groq model provider for low-latency chat and inference workloads.",
5
+ "npmName": "@elizaos/plugin-groq",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["ai-provider", "llm", "groq", "chat"],
9
+ "config": {
10
+ "GROQ_API_KEY": {
11
+ "type": "secret",
12
+ "required": true,
13
+ "sensitive": true,
14
+ "label": "Api Key",
15
+ "help": "Groq API key",
16
+ "advanced": false
17
+ },
18
+ "GROQ_BASE_URL": {
19
+ "type": "url",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "default": "https://api.groq.com/openai/v1",
23
+ "label": "Base Url",
24
+ "help": "Custom API base URL",
25
+ "advanced": false
26
+ },
27
+ "GROQ_SMALL_MODEL": {
28
+ "type": "string",
29
+ "required": false,
30
+ "sensitive": false,
31
+ "default": "openai/gpt-oss-120b",
32
+ "label": "Small Model",
33
+ "help": "Small model name",
34
+ "placeholder": "e.g., gpt-4o, claude-sonnet-4-20250514",
35
+ "advanced": false
36
+ },
37
+ "GROQ_LARGE_MODEL": {
38
+ "type": "string",
39
+ "required": false,
40
+ "sensitive": false,
41
+ "default": "openai/gpt-oss-120b",
42
+ "label": "Large Model",
43
+ "help": "Large model name",
44
+ "placeholder": "e.g., gpt-4o, claude-sonnet-4-20250514",
45
+ "advanced": false
46
+ },
47
+ "GROQ_TTS_MODEL": {
48
+ "type": "string",
49
+ "required": false,
50
+ "sensitive": false,
51
+ "default": "canopylabs/orpheus-v1-english",
52
+ "label": "Tts Model",
53
+ "help": "TTS model name",
54
+ "placeholder": "e.g., tts-1, eleven_multilingual_v2",
55
+ "advanced": false
56
+ },
57
+ "GROQ_TTS_VOICE": {
58
+ "type": "string",
59
+ "required": false,
60
+ "sensitive": false,
61
+ "default": "troy",
62
+ "label": "Tts Voice",
63
+ "help": "TTS voice name",
64
+ "advanced": false
65
+ },
66
+ "GROQ_TTS_RESPONSE_FORMAT": {
67
+ "type": "string",
68
+ "required": false,
69
+ "sensitive": false,
70
+ "default": "wav",
71
+ "label": "Tts Response Format",
72
+ "help": "TTS response format",
73
+ "advanced": false
74
+ }
75
+ },
76
+ "render": {
77
+ "visible": true,
78
+ "pinTo": [],
79
+ "style": "card",
80
+ "icon": "Zap",
81
+ "group": "ai-provider",
82
+ "groupOrder": 0,
83
+ "actions": ["enable", "configure"]
84
+ },
85
+ "resources": {
86
+ "homepage": "https://github.com/elizaos-plugins/plugin-groq#readme",
87
+ "repository": "https://github.com/elizaos-plugins/plugin-groq",
88
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#groq"
89
+ },
90
+ "dependsOn": [],
91
+ "kind": "plugin",
92
+ "subtype": "ai-provider"
93
+ }