@odla-ai/ai 0.3.0 → 0.3.1

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 +4 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,8 +10,10 @@ One general-purpose interface for AI inference across **Anthropic (Claude)**,
10
10
  tool-use **agent engine** and an **eval harness**. It's the place every odla app
11
11
  reaches for when it needs AI.
12
12
 
13
- - **Library-only.** Import it in-process and bring your own keys. No hosted
14
- gateway, no network hop.
13
+ - **Library surface.** Import it in-process and bring your own keys; this
14
+ package exports no generic hosted gateway. Separately, odla's System AI
15
+ broker uses the same facade server-side for bounded o11y/security purposes
16
+ and returns purpose grants rather than provider credentials.
15
17
  - **One canonical shape.** Anthropic-flavored content blocks, forced tool calls
16
18
  with object inputs, a normalized streaming event vocabulary, cache-aware usage,
17
19
  and a closed error taxonomy — the same regardless of which provider answers.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odla-ai/ai",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "One general-purpose interface for AI inference across Anthropic (Claude), OpenAI, and Google (Gemini) \u2014 text, image, and audio \u2014 plus a tool-use agent engine and eval harness for Node 20+ and Cloudflare Workers.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://odla.ai/docs/packages/ai",