pi-extensions 0.1.35 → 0.1.37

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmustier/pi-files-widget",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "description": "In-terminal file browser and viewer for Pi.",
5
5
  "license": "MIT",
6
6
  "author": "Thomas Mustier",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-extensions",
3
- "version": "0.1.35",
3
+ "version": "0.1.37",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "keywords": [
@@ -212,6 +212,9 @@ async function generateRecap(
212
212
  const response = await completeSimple(
213
213
  model,
214
214
  {
215
+ // Some providers (notably openai-codex-responses) require a non-empty
216
+ // top-level instruction string even for simple one-shot completions.
217
+ systemPrompt: "You write terse, concrete session recaps for a coding agent UI.",
215
218
  messages: [
216
219
  {
217
220
  role: "user",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmustier/pi-session-recap",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "One-line recap above the editor when you refocus a Pi session. Keeps you in flow when multi-agenting.",
5
5
  "license": "MIT",
6
6
  "author": "Thomas Mustier",