@ax-llm/ax 21.0.14 → 22.0.0
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.
- package/README.md +3 -4
- package/index.cjs +457 -486
- package/index.cjs.map +1 -1
- package/index.d.cts +759 -3061
- package/index.d.ts +759 -3061
- package/index.global.js +455 -484
- package/index.global.js.map +1 -1
- package/index.js +457 -486
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent-memory-skills.md +1 -1
- package/skills/ax-agent-observability.md +4 -4
- package/skills/ax-agent-optimize.md +1 -1
- package/skills/ax-agent-rlm.md +28 -8
- package/skills/ax-agent.md +27 -7
- package/skills/ax-ai.md +28 -12
- package/skills/ax-audio.md +1 -1
- package/skills/ax-flow.md +13 -5
- package/skills/ax-gen.md +35 -18
- package/skills/ax-gepa.md +1 -1
- package/skills/ax-llm.md +17 -9
- package/skills/ax-refine.md +81 -0
- package/skills/ax-signature.md +1 -1
- package/skills/ax-learn.md +0 -268
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ prompts automatically.
|
|
|
49
49
|
|
|
50
50
|
Ax stays in the same latency class as direct provider calls while adding typed
|
|
51
51
|
outputs, validation, retries, tracing, and tools. Streaming is the default so Ax
|
|
52
|
-
can parse fields as they arrive, fail early on streaming
|
|
52
|
+
can parse fields as they arrive, fail early on streaming guards, cancel bad
|
|
53
53
|
outputs, and start correction without wasting tokens on completions that are
|
|
54
54
|
already invalid.
|
|
55
55
|
|
|
@@ -153,15 +153,14 @@ console.log(result.translation); // "Hola mundo"
|
|
|
153
153
|
|
|
154
154
|
## Powerful Features, Zero Complexity
|
|
155
155
|
|
|
156
|
-
- ✅ **
|
|
157
|
-
more
|
|
156
|
+
- ✅ **Model-Lab Providers** - OpenAI, Anthropic, Google, Mistral, DeepSeek,
|
|
157
|
+
Grok/xAI, and more
|
|
158
158
|
- ✅ **Type-Safe Everything** - Full TypeScript support with auto-completion
|
|
159
159
|
- ✅ **Streaming First** - Real-time responses with validation
|
|
160
160
|
- ✅ **Multi-Modal** - Images, audio, text in the same signature
|
|
161
161
|
- ✅ **Smart Optimization** - Automatic prompt tuning with GEPA and bootstrap demos
|
|
162
162
|
- ✅ **Production Observability** - OpenTelemetry tracing built-in
|
|
163
163
|
- ✅ **Advanced Workflows** - Compose complex pipelines with AxFlow
|
|
164
|
-
- ✅ **Enterprise RAG** - Multi-hop retrieval with quality loops
|
|
165
164
|
- ✅ **Agent Framework** - Agents that can use tools and call other agents
|
|
166
165
|
- ✅ **Zero Dependencies** - Lightweight, fast, reliable
|
|
167
166
|
|