@ax-llm/ax 19.0.6 → 19.0.8
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/index.cjs +234 -226
- package/index.cjs.map +1 -1
- package/index.global.js +253 -245
- package/index.global.js.map +1 -1
- package/index.js +236 -228
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/ax-agent.md +3 -3
- package/skills/ax-llm.md +1 -1
package/package.json
CHANGED
package/skills/ax-agent.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ax-agent
|
|
3
3
|
description: This skill helps with building AxAgent-based agents using @ax-llm/ax. Use when the user asks about agent(), AxAgent, child agents, tool functions, RLM mode, stopping agents, composing multi-agent hierarchies, shared fields, shared agents, or global shared fields/agents.
|
|
4
|
-
version: "19.0.
|
|
4
|
+
version: "19.0.8"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# AxAgent Guide (@ax-llm/ax)
|
|
@@ -837,7 +837,7 @@ class MyBrowserInterpreter implements AxCodeRuntime {
|
|
|
837
837
|
|
|
838
838
|
createSession(globals?: Record<string, unknown>): AxCodeSession {
|
|
839
839
|
return {
|
|
840
|
-
async execute(code: string)
|
|
840
|
+
async execute(code: string) {
|
|
841
841
|
// Execute code and return result
|
|
842
842
|
},
|
|
843
843
|
close() {
|
|
@@ -924,7 +924,7 @@ interface AxCodeRuntime {
|
|
|
924
924
|
|
|
925
925
|
```typescript
|
|
926
926
|
interface AxCodeSession {
|
|
927
|
-
execute(code: string, options?: { signal?: AbortSignal })
|
|
927
|
+
execute(code: string, options?: { signal?: AbortSignal });
|
|
928
928
|
close(): void;
|
|
929
929
|
}
|
|
930
930
|
```
|
package/skills/ax-llm.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: ax
|
|
3
3
|
description: This skill helps with using the @ax-llm/ax TypeScript library for building LLM applications. Use when the user asks about ax(), ai(), f(), s(), agent(), flow(), AxGen, AxAgent, AxFlow, signatures, streaming, or mentions @ax-llm/ax.
|
|
4
|
-
version: "19.0.
|
|
4
|
+
version: "19.0.8"
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Ax Library (@ax-llm/ax) Usage Guide
|