@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ax-llm/ax",
3
- "version": "19.0.6",
3
+ "version": "19.0.8",
4
4
  "type": "module",
5
5
  "description": "The best library to work with LLMs",
6
6
  "repository": {
@@ -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.6"
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): Promise<unknown> {
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 }): Promise<unknown>;
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.6"
4
+ version: "19.0.8"
5
5
  ---
6
6
 
7
7
  # Ax Library (@ax-llm/ax) Usage Guide