Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PARITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@
| Feature | Source Repo | jcode Status | Notes |
|---------|-------------|-------------|-------|
| **WASM extension security** | pi-agent-rust | ❌ Not implemented | pi-agent-rust has WASM-based extension sandboxing. jcode has native plugin system but no WASM sandbox. |
| **SSE streaming** | pi-agent-rust | ❌ Not found | Server-Sent Events for real-time streaming. May exist in protocol layer. |
| **SSE streaming** | pi-agent-rust | ✅ Done (jcode-llm-core::sse, 15 tests) | Server-Sent Events for real-time streaming. Centralized parser with UTF-8 tail handling and SseStream wrapper. |
| **ACP / Remote control** | claude-code (CCB) | ⚠️ Partial | jcode has remote protocol but ACP-style remote agent control not verified. |
| **Sandbox execution** | codex | ❌ Skipped | Container/firewall-based sandbox. Marked as skipped by design decision. |
| **40+ providers** | oh-my-pi | ⚠️ Partial | jcode has 10 provider crates. oh-my-pi claims 40+. |
Expand Down Expand Up @@ -686,7 +686,7 @@
| Feature | Source Repo | jcode Status | Notes |
|---------|-------------|-------------|-------|
| **WASM extension security** | pi-agent-rust | ❌ Not implemented | pi-agent-rust has WASM-based extension sandboxing. jcode has plugin system but no WASM sandbox. |
| **SSE streaming** | pi-agent-rust | ❌ Not found | Server-Sent Events for real-time streaming. May exist in jcode protocol layer. |
| **SSE streaming** | pi-agent-rust | ✅ Done (jcode-llm-core::sse, 15 tests) | Server-Sent Events for real-time streaming. Centralized parser with UTF-8 tail handling and SseStream wrapper. |
| **ACP / Remote control** | claude-code (CCB) | ⚠️ Partial | jcode has remote protocol (`jcode-protocol`) but ACP-style remote agent control not verified. |
| **Sandbox execution** | codex | ❌ Skipped | Marked as skipped in PARITY.md. Requires container infrastructure. |
| **40+ providers** | oh-my-pi | ⚠️ Partial | jcode has 10 provider crates + core abstraction. oh-my-pi claims 40+. |
Expand Down
1 change: 1 addition & 0 deletions crates/jcode-llm-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ async-trait = "0.1"
async-stream = "0.3"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3"
memchr = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
schemars = "0.8"
Expand Down
1 change: 1 addition & 0 deletions crates/jcode-llm-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pub mod model_ref;
pub mod protocol;
pub mod route;
pub mod schema;
pub mod sse;
pub mod transport;

pub fn version() -> &'static str {
Expand Down
Loading
Loading