@pinecall/skills 0.1.6 → 0.1.7
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": "@pinecall/skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Agent Skills for the Pinecall SDK — installable into Claude Code, Antigravity, Cursor, Copilot and any agent that supports the open Skills format.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -184,8 +184,25 @@ llm: {
|
|
|
184
184
|
llm: "xai/grok-4" // "grok" is accepted as an alias for "xai"
|
|
185
185
|
```
|
|
186
186
|
|
|
187
|
+
Or with tuning (same config shape as OpenAI — see [Temperature & max_tokens](#temperature--max_tokens)):
|
|
188
|
+
|
|
189
|
+
```typescript
|
|
190
|
+
llm: {
|
|
191
|
+
provider: "xai",
|
|
192
|
+
model: "grok-4",
|
|
193
|
+
enabled: true,
|
|
194
|
+
temperature: 0.7,
|
|
195
|
+
max_tokens: 512,
|
|
196
|
+
}
|
|
197
|
+
```
|
|
198
|
+
|
|
187
199
|
OpenAI-compatible. Requires your own xAI key. Models: `grok-4`, `grok-4-fast`, `grok-3`.
|
|
188
200
|
|
|
201
|
+
> **All BYOK LLM providers below (Groq, Cerebras, DeepSeek, OpenRouter) are
|
|
202
|
+
> OpenAI-compatible** — they take the **identical config object** (`provider`,
|
|
203
|
+
> `model`, `temperature`, `max_tokens`, `enabled`) and support the same tools /
|
|
204
|
+
> tuning as OpenAI. Only the `provider` and `model` change.
|
|
205
|
+
|
|
189
206
|
## Groq (BYOK)
|
|
190
207
|
|
|
191
208
|
```typescript
|
|
@@ -152,8 +152,13 @@ Realtime `scribe_v2_realtime`. Uses the same ElevenLabs key as ElevenLabs TTS.
|
|
|
152
152
|
|
|
153
153
|
```typescript
|
|
154
154
|
stt: "elevenlabs/scribe"
|
|
155
|
-
// or
|
|
156
|
-
stt: {
|
|
155
|
+
// or with tuning
|
|
156
|
+
stt: {
|
|
157
|
+
provider: "elevenlabs",
|
|
158
|
+
model: "scribe_v2_realtime",
|
|
159
|
+
language: "en",
|
|
160
|
+
commit_strategy: "vad", // "vad" (server segments turns) | "manual"
|
|
161
|
+
}
|
|
157
162
|
```
|
|
158
163
|
|
|
159
164
|
## AssemblyAI (BYOK)
|
|
@@ -163,8 +168,13 @@ own AssemblyAI key.
|
|
|
163
168
|
|
|
164
169
|
```typescript
|
|
165
170
|
stt: "assemblyai/universal"
|
|
166
|
-
// or
|
|
167
|
-
stt: {
|
|
171
|
+
// or with tuning
|
|
172
|
+
stt: {
|
|
173
|
+
provider: "assemblyai",
|
|
174
|
+
model: "u3-rt-pro",
|
|
175
|
+
language: "en",
|
|
176
|
+
format_turns: true, // punctuated/cased final transcripts
|
|
177
|
+
}
|
|
168
178
|
```
|
|
169
179
|
|
|
170
180
|
## Which to choose
|