@elizaos/plugin-groq 1.0.1 → 1.0.2
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 +43 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-groq",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -47,6 +47,48 @@
|
|
|
47
47
|
"GROQ_API_KEY": {
|
|
48
48
|
"type": "string",
|
|
49
49
|
"description": "API key for the service"
|
|
50
|
+
},
|
|
51
|
+
"GROQ_BASE_URL": {
|
|
52
|
+
"type": "string",
|
|
53
|
+
"description": "Custom API endpoint for Groq Cloud",
|
|
54
|
+
"required": false,
|
|
55
|
+
"default": "https://api.groq.com/openai/v1"
|
|
56
|
+
},
|
|
57
|
+
"GROQ_SMALL_MODEL": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "Model identifier for the small text generation model",
|
|
60
|
+
"required": false,
|
|
61
|
+
"default": "llama-3.1-8b-instant"
|
|
62
|
+
},
|
|
63
|
+
"GROQ_LARGE_MODEL": {
|
|
64
|
+
"type": "string",
|
|
65
|
+
"description": "Model identifier for the large text generation model",
|
|
66
|
+
"required": false,
|
|
67
|
+
"default": "qwen-qwq-32b"
|
|
68
|
+
},
|
|
69
|
+
"SMALL_MODEL": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"description": "Generic fallback identifier for a small model if GROQ_SMALL_MODEL is not set.",
|
|
72
|
+
"required": false,
|
|
73
|
+
"default": "llama-3.1-8b-instant"
|
|
74
|
+
},
|
|
75
|
+
"LARGE_MODEL": {
|
|
76
|
+
"type": "string",
|
|
77
|
+
"description": "Generic fallback identifier for a large model if GROQ_LARGE_MODEL is not set.",
|
|
78
|
+
"required": false,
|
|
79
|
+
"default": "qwen-qwq-32b"
|
|
80
|
+
},
|
|
81
|
+
"GROQ_TTS_MODEL": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"description": "Identifier of the text-to-speech model for Groq TTS.",
|
|
84
|
+
"required": false,
|
|
85
|
+
"default": "playai-tts"
|
|
86
|
+
},
|
|
87
|
+
"GROQ_TTS_VOICE": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"description": "Voice name to use with the Groq text-to-speech model.",
|
|
90
|
+
"required": false,
|
|
91
|
+
"default": "Chip-PlayAI"
|
|
50
92
|
}
|
|
51
93
|
}
|
|
52
94
|
},
|