@revealui/ai 0.5.1 → 0.5.2

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.
Files changed (2) hide show
  1. package/README.md +2 -6
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -322,10 +322,8 @@ Agent runtime and execution engine for autonomous agents.
322
322
 
323
323
  ```typescript
324
324
  import { AgentRuntime } from '@revealui/ai/orchestration/runtime'
325
- import { AgentOrchestrator } from '@revealui/ai/orchestration/orchestrator'
326
325
 
327
326
  const runtime = new AgentRuntime()
328
- const orchestrator = new AgentOrchestrator()
329
327
  ```
330
328
 
331
329
  ### Tools
@@ -334,10 +332,8 @@ Tool registry and execution system with MCP integration.
334
332
 
335
333
  ```typescript
336
334
  import { ToolRegistry } from '@revealui/ai/tools/registry'
337
- import { registerMCPTools } from '@revealui/ai/tools/mcp-adapter'
338
335
 
339
336
  const registry = new ToolRegistry()
340
- await registerMCPTools(mcpClient, registry)
341
337
  ```
342
338
 
343
339
  ## Performance Considerations
@@ -477,13 +473,13 @@ Potential optimizations (not yet implemented):
477
473
 
478
474
  ## Requirements
479
475
 
480
- - Node.js 18+
476
+ - Node.js 24.13.0 or higher
481
477
  - PostgreSQL with pgvector extension
482
478
  - Neon Postgres (for production) or compatible database
483
479
 
484
480
  ## License
485
481
 
486
- Commercial - see [LICENSE.commercial](../../LICENSE.commercial)
482
+ FSL-1.1-MIT (Fair Source — converts to MIT after 2 years). See [LICENSE](../../LICENSE).
487
483
 
488
484
  ---
489
485
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revealui/ai",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "AI runtime for agent-driven products — agents, memory, LLM providers (Inference Snaps, Ollama, OpenAI-compatible), tools, and orchestration. Anthropic-SDK-free.",
5
5
  "keywords": [
6
6
  "agent",
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "license": "FSL-1.1-MIT",
25
25
  "dependencies": {
26
- "lru-cache": "^11.4.0",
26
+ "lru-cache": "^11.5.0",
27
27
  "zod": "^4.4.3",
28
28
  "@revealui/contracts": "0.6.0",
29
- "@revealui/core": "0.8.0",
30
- "@revealui/db": "0.6.0",
29
+ "@revealui/core": "0.9.0",
30
+ "@revealui/db": "0.7.0",
31
31
  "@revealui/resilience": "0.2.4"
32
32
  },
33
33
  "devDependencies": {