-
Notifications
You must be signed in to change notification settings - Fork 60
Description
Overview
I installed the PapersGPT‑for‑Zotero plug‑in (version v0.3.4) in Zotero 7 on my Windows 11 x64 system. After installation the plug‑in UI loads, but nothing happens when I attempt to use it with either a paid ChatGPT model (gpt‑5 via the OpenAI API) or the built‑in quick‑actions. When the plug‑in window is open, a Windows Script Host error appears stating that run.vbs
cannot find the specified file. Uninstalling and reinstalling the plug‑in did not resolve the problem.
Environment
- Operating system: Windows 11 x64
- Zotero version: 7.0
- PapersGPT plug‑in version: v0.3.4 (latest at the time of writing)
- User profile path:
C:\Users\…
— note that my user name contains a space.
Symptoms and evidence
Plug‑in UI not responding
After installing the plug‑in I opened a PDF in Zotero and invoked PapersGPT. The plug‑in window opened and I selected OpenAI → gpt‑5 and provided my OpenAI API key (I have a ChatGPT Plus subscription). The UI shows the prompt field and the quick‑action buttons, but clicking the send button does nothing and no response is returned. A screen capture of the unresponsive UI is shown below:

run.vbs error
When the plug‑in is invoked a Windows Script Host dialog appears with the following information:
- Script:
C:\Users\…\.papersgpt\run.vbs
- Line: 7
- Char: 9
- Error: The system cannot find the file specified.
- Code: 80070002
The dialog is reproduced below:

.papersgpt folder contents
The plug‑in creates a .papersgpt
folder in my user profile, but no local‑models
directory is created even after several minutes of waiting. The folder contains various DLLs, a SQLite database, and two items named papersgpt‑agent‑v0.3.4
– one is an application and the other appears as a mysterious “4 File” entry. There is also the run.vbs
script. A screen capture of the folder is shown here:

Investigations
- Checked documentation: The usage tips on the official website note that antivirus software may quarantine the agent executables and advise verifying the existence of
~\.papersgpt\local‑models\bin\llm‑server‑deploy‑package\papersgpt‑local‑llm
and deleting the folder if it is missing:contentReference[oaicite:0]{index=0}. In my case nolocal‑models
folder exists at all, and Windows Defender never displayed a warning. - Examined
run.vbs
: The VBScript wrapper in.papersgpt
simply launches the agent executable based on the first argument. Line 7 readsobjShell.Run cmdExec, 0, False
, which fails if the path to the agent is not properly quoted. Since my user name contains a space, it appears that the script is receiving a truncated path (e.g.,C:\Users\TRONG
), leading to the “file not found” error. - Confirmed plug‑in version: According to the release notes for version 0.3.0, the developers fixed a Windows‑specific bug where the built‑in embedding server failed to start:contentReference[oaicite:1]{index=1}. However, there is also a warning in the 0.2.1 beta release that the new Windows agent is not yet stable and that users should use version v0.1.3 for a stable experience (version v0.3.4 still exhibits the same agent issues).
- Tried reinstalling: Completely removing the plug‑in and the
.papersgpt
folder, then reinstalling, produced the same result: the plug‑in installs, the.papersgpt
folder is created, but the agent cannot be started and nolocal‑models
folder is downloaded.
Hypothesis
The plug‑in appears to rely on an external agent (papersgpt‑agent‑v0.3.4
) to perform all backend operations, even for remote API models. run.vbs
is used to start or stop this agent. On Windows systems where the user profile contains a space, the path is not quoted when passed to the VBScript. As a result, the script receives an incomplete file name and fails with error code 80070002. Because the agent never starts, the plug‑in UI cannot communicate with either local or remote models, and no local‑models
folder is created.
Request for assistance
I would appreciate guidance from the PapersGPT maintainers on the following:
- Is there a known fix or workaround for the
run.vbs
quoting issue on Windows profiles with spaces? Editingrun.vbs
to wrap the argument in quotes appears to be a potential workaround. - What is the purpose of the “4 File” version of
papersgpt‑agent‑v0.3.4
? The inability to open it suggests it may be part of a multi‑part archive. - Are there instructions for using an older, more stable version of PapersGPT on Windows while the new agent is under development?
Thank you!