@elizaos/plugin-groq 1.0.3 → 1.0.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.
Files changed (1) hide show
  1. package/package.json +50 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-groq",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -44,11 +44,60 @@
44
44
  "agentConfig": {
45
45
  "pluginType": "elizaos:plugin:1.0.0",
46
46
  "pluginParameters": {
47
+ "GROQ_BASE_URL": {
48
+ "type": "string",
49
+ "description": "Custom base URL for Groq API endpoints.",
50
+ "required": false,
51
+ "default": "https://api.groq.com/openai/v1",
52
+ "sensitive": false
53
+ },
54
+ "GROQ_SMALL_MODEL": {
55
+ "type": "string",
56
+ "description": "Overrides the default model name used for small-sized text/object generation.",
57
+ "required": false,
58
+ "default": "llama-3.1-8b-instant",
59
+ "sensitive": false
60
+ },
61
+ "GROQ_LARGE_MODEL": {
62
+ "type": "string",
63
+ "description": "Overrides the default model name used for large-sized text/object generation.",
64
+ "required": false,
65
+ "default": "qwen-qwq-32b",
66
+ "sensitive": false
67
+ },
47
68
  "GROQ_API_KEY": {
48
69
  "type": "string",
49
70
  "description": "Groq API key used to authenticate requests to Groq services.",
50
71
  "required": true,
51
72
  "sensitive": true
73
+ },
74
+ "SMALL_MODEL": {
75
+ "type": "string",
76
+ "description": "Alternative env var to specify the small model name if GROQ_SMALL_MODEL is not provided.",
77
+ "required": false,
78
+ "default": "llama-3.1-8b-instant",
79
+ "sensitive": false
80
+ },
81
+ "LARGE_MODEL": {
82
+ "type": "string",
83
+ "description": "Alternative env var to specify the large model name if GROQ_LARGE_MODEL is not provided.",
84
+ "required": false,
85
+ "default": "qwen-qwq-32b",
86
+ "sensitive": false
87
+ },
88
+ "GROQ_TTS_MODEL": {
89
+ "type": "string",
90
+ "description": "Model name used for Groq text-to-speech requests.",
91
+ "required": false,
92
+ "default": "playai-tts",
93
+ "sensitive": false
94
+ },
95
+ "GROQ_TTS_VOICE": {
96
+ "type": "string",
97
+ "description": "Voice selection for Groq text-to-speech.",
98
+ "required": false,
99
+ "default": "Chip-PlayAI",
100
+ "sensitive": false
52
101
  }
53
102
  }
54
103
  },