pi-web-providers 3.3.0 → 3.4.0
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/README.md +16 -1
- package/dist/index.js +1439 -546
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -188,7 +188,22 @@ in tool calls.
|
|
|
188
188
|
Unlike the other managed tools, `web_research` does not accept local timeout,
|
|
189
189
|
retry, polling, or resume controls. Research has one opinionated execution
|
|
190
190
|
style: pi starts it asynchronously, tracks it locally, and saves the final
|
|
191
|
-
report under `.pi/artifacts/research/`.
|
|
191
|
+
report under `.pi/artifacts/research/`. Saved research reports are Markdown
|
|
192
|
+
files with YAML frontmatter for job metadata such as query, provider, status,
|
|
193
|
+
and timestamps.
|
|
194
|
+
|
|
195
|
+
Use `/web-research` in interactive pi sessions to browse and manage researches.
|
|
196
|
+
The command opens a table of running and finished researches with status, date,
|
|
197
|
+
provider, duration, and title. Running researches show a live spinner and
|
|
198
|
+
elapsed time; press `c` twice to cancel one. Cancellation aborts the provider
|
|
199
|
+
call and records a durable `cancelled` artifact under
|
|
200
|
+
`.pi/artifacts/research/`. Press `Enter` on a finished research to read the
|
|
201
|
+
report in a scrollable Markdown overlay; from there, `c` copies the report as
|
|
202
|
+
Markdown to the clipboard and `i` injects it into the current conversation so
|
|
203
|
+
the agent can build on earlier research.
|
|
204
|
+
|
|
205
|
+
While researches run, a one-line summary above the editor shows the number of
|
|
206
|
+
active researches with their status and elapsed time.
|
|
192
207
|
|
|
193
208
|
</details>
|
|
194
209
|
|