| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
…s one program load() forwarded '.load <path>' over the wire, but the server treats .load as a client-only REPL command and replies with an informational message instead of executing anything - so SDK load() succeeded while loading nothing. Now the file is read client-side and sent as a single multi-statement execute program, which is also atomic (the server parses every statement before executing any) and immune to the per-message WS rate limit. mode= raises NotImplementedError since --replace/--merge are unimplemented server-side.
| Back | FazBrowse Home | New Git URL |
What
KnowledgeGraph.load(path) forwarded '.load ' over the WebSocket, but the server treats .load as a client-only REPL command (src/protocol/handler.rs:3627-3630) and replies with an informational message instead of executing anything. So SDK load() returned success while loading nothing.
Now the file is read client-side and sent as a single multi-statement execute program:
Tests
New tests/test_kg_load.py (file contents sent verbatim as one program, mode rejected, missing file raises). Full SDK suite: 960 passed, 23 skipped.
Merge order
Independent - mergeable any time; no conflicts with #98/#100/#101/#103.