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