Skip to content
Merged
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
14 changes: 7 additions & 7 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inbrowser/agent",
"version": "0.4.0",
"version": "0.4.1",
"description": "Agent runtime + CLI. Library exports AgentSession, AgentStrategy, ToolRegistry, ModelClient, MetricsCollector, SandboxObserver. Ships an `agent` binary with NDJSON output, --json stdin, --dry-run, schema introspection, and inverse-mode MCP serve. Domain-agnostic — hosts wire their own AgentDefinitions.",
"type": "module",
"main": "./dist/index.js",
Expand Down Expand Up @@ -39,8 +39,8 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@inbrowser/model": "^0.4.0",
"@inbrowser/sandbox": "^0.4.0",
"@inbrowser/model": "^0.4.1",
"@inbrowser/sandbox": "^0.4.1",
"@modelcontextprotocol/sdk": "^1.0.0",
"@opentui/core": "^0.1.0",
"@opentui/react": "^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/model/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inbrowser/model",
"version": "0.4.0",
"version": "0.4.1",
"description": "The model layer for the inbrowser stack: it OWNS the shared ModelClient contract that @inbrowser/relay (transport) and @inbrowser/agent (runtime) both consume, the cloud provider factories (Gemini, OpenRouter, Requesty, Anthropic, Ollama, Claude-CLI, Claude-Code) that each return a ModelClient, a withRetry decorator, and the on-device LLM engine (lazy-loads @huggingface/transformers + ONNX Runtime Web behind a narrow EngineEvent-streaming Engine surface; Gemma 4 + Qwen + SmolLM2 presets; in-worker host/connect helpers). The engine is also a ModelClient via createEngineModelClient. Everything is exported from the package root.",
"type": "module",
"main": "./dist/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/relay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inbrowser/relay",
"version": "0.4.0",
"version": "0.4.1",
"description": "Resumable LLM inference relay. Pre-wires @inbrowser/resumable with the shared @inbrowser/model contract: createRelay routes a providers map of ModelClientFactory (the cloud providers live in @inbrowser/model/providers/*), constructing a ModelClient per request so BYOK + server-managed keys both work. Web-standard handlers, Astro/Express adapters, and a reconnecting browser client.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -20,8 +20,8 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@inbrowser/model": "^0.4.0",
"@inbrowser/resumable": "^0.4.0"
"@inbrowser/model": "^0.4.1",
"@inbrowser/resumable": "^0.4.1"
},
"peerDependencies": {
"astro": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/resumable/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inbrowser/resumable",
"version": "0.4.0",
"version": "0.4.1",
"description": "Resumable streaming-job engine: a pluggable JobStore contract + JobEngine that lets producers stream events into a durable log a subscriber can tail and resume. Backend-agnostic, with memory and Firebase RTDB stores plus durability and TTL probes.",
"type": "module",
"main": "./dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inbrowser/sandbox",
"version": "0.4.0",
"version": "0.4.1",
"description": "Runtime-agnostic sandbox orchestration for the inbrowser stack: typed tools, runtime adapters, checkpoints, artifacts, and workspace integration.",
"type": "module",
"main": "./dist/index.js",
Expand All @@ -24,7 +24,7 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@inbrowser/workspace": "^0.4.0"
"@inbrowser/workspace": "^0.4.1"
},
"devDependencies": {
"@types/bun": "latest",
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inbrowser/workspace",
"version": "0.4.0",
"version": "0.4.1",
"description": "Browser-native workspace runtime: OPFS/memory files, esbuild preview compilation, jailed browser shell, local git snapshots, package import maps, and optional agent tool adapters.",
"type": "module",
"main": "./dist/index.js",
Expand Down
Loading