@ax-llm/ax 19.0.45 → 20.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 +2 -2
- package/index.cjs +821 -779
- package/index.cjs.map +1 -1
- package/index.d.cts +7040 -6777
- package/index.d.ts +7040 -6777
- package/index.global.js +808 -766
- package/index.global.js.map +1 -1
- package/index.js +818 -776
- package/index.js.map +1 -1
- package/package.json +1 -15
- package/skills/ax-agent-optimize.md +41 -16
- package/skills/ax-agent.md +1 -1
- package/skills/ax-ai.md +1 -1
- package/skills/ax-flow.md +1 -1
- package/skills/ax-gen.md +1 -1
- package/skills/ax-gepa.md +18 -12
- package/skills/ax-learn.md +1 -1
- package/skills/ax-llm.md +1 -1
- package/skills/ax-signature.md +1 -1
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ console.log(result.translation); // "Hola mundo"
|
|
|
143
143
|
- ✅ **Type-Safe Everything** - Full TypeScript support with auto-completion
|
|
144
144
|
- ✅ **Streaming First** - Real-time responses with validation
|
|
145
145
|
- ✅ **Multi-Modal** - Images, audio, text in the same signature
|
|
146
|
-
- ✅ **Smart Optimization** - Automatic prompt tuning with
|
|
146
|
+
- ✅ **Smart Optimization** - Automatic prompt tuning with GEPA and bootstrap demos
|
|
147
147
|
- ✅ **Production Observability** - OpenTelemetry tracing built-in
|
|
148
148
|
- ✅ **Advanced Workflows** - Compose complex pipelines with AxFlow
|
|
149
149
|
- ✅ **Enterprise RAG** - Multi-hop retrieval with quality loops
|
|
@@ -196,7 +196,7 @@ OPENAI_APIKEY=your-key npm run tsx ./src/examples/[example-name].ts
|
|
|
196
196
|
with tools
|
|
197
197
|
- [simple-optimizer-test.ts](src/examples/simple-optimizer-test.ts) - Automatic
|
|
198
198
|
optimization
|
|
199
|
-
- [
|
|
199
|
+
- [axagent-gepa-optimization.ts](src/examples/axagent-gepa-optimization.ts) - Agent optimization with GEPA
|
|
200
200
|
MIPRO optimization
|
|
201
201
|
- [ax-flow-enhanced-demo.ts](src/examples/ax-flow-enhanced-demo.ts) - Complex
|
|
202
202
|
workflows
|