@pinecall/skills 0.1.14 → 0.1.15
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.15",
|
|
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",
|
|
@@ -98,7 +98,7 @@ Or with tuning:
|
|
|
98
98
|
```typescript
|
|
99
99
|
stt: {
|
|
100
100
|
provider: "deepgram",
|
|
101
|
-
model: "nova-3",
|
|
101
|
+
model: "nova-3", // "nova-3" | "nova-2"
|
|
102
102
|
language: "en",
|
|
103
103
|
interim_results: true,
|
|
104
104
|
smart_format: true,
|
|
@@ -106,7 +106,9 @@ stt: {
|
|
|
106
106
|
profanity_filter: false,
|
|
107
107
|
endpointing_ms: 300,
|
|
108
108
|
utterance_end_ms: 1000,
|
|
109
|
-
keywords: ["pinecall"],
|
|
109
|
+
keywords: ["pinecall"], // nova-2 keyword boosting
|
|
110
|
+
keyterms: ["pinecall"], // nova-3 keyterm prompting
|
|
111
|
+
min_confidence: 0.0, // drop transcripts below this confidence (0 = off)
|
|
110
112
|
}
|
|
111
113
|
```
|
|
112
114
|
|
|
@@ -179,8 +179,11 @@ Shortcut: `"cartesia/yumiko"`
|
|
|
179
179
|
voice: {
|
|
180
180
|
provider: "polly",
|
|
181
181
|
voice_id: "Joanna",
|
|
182
|
-
engine: "neural",
|
|
182
|
+
engine: "neural", // "neural" | "standard"
|
|
183
183
|
language: "en-US",
|
|
184
|
+
rate: "medium", // "slow" | "medium" | "fast" | "+10%" / "-10%"
|
|
185
|
+
volume: "medium", // "soft" | "medium" | "loud" | "+6dB" / "-6dB"
|
|
186
|
+
pitch: "+5%", // standard engine only
|
|
184
187
|
}
|
|
185
188
|
```
|
|
186
189
|
|
|
@@ -189,6 +192,7 @@ Shortcut: `"polly/joanna"`
|
|
|
189
192
|
**Tuning notes:**
|
|
190
193
|
|
|
191
194
|
- `engine: "neural"` is required for natural-sounding output. The older `standard` engine is robotic.
|
|
195
|
+
- `rate` / `volume` accept named levels or relative values; `pitch` only applies to the `standard` engine.
|
|
192
196
|
- Polly is the cheapest option but the least natural — fine for IVR-style flows, not for engaging conversation.
|
|
193
197
|
|
|
194
198
|
## Rime (BYOK)
|