@agentxjs/runtime 1.0.2 → 1.1.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/dist/index.cjs +146 -1370
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +144 -1368
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
- package/LICENSE +0 -21
package/dist/index.d.cts
CHANGED
|
@@ -19,6 +19,11 @@ interface RuntimeConfig {
|
|
|
19
19
|
* LLM provider for AI model access
|
|
20
20
|
*/
|
|
21
21
|
llmProvider: LLMProvider<ClaudeLLMConfig>;
|
|
22
|
+
/**
|
|
23
|
+
* Base path for runtime data (containers, workdirs, etc.)
|
|
24
|
+
* @example "/Users/john/.agentx"
|
|
25
|
+
*/
|
|
26
|
+
basePath: string;
|
|
22
27
|
/**
|
|
23
28
|
* Optional custom environment (for testing)
|
|
24
29
|
* If not provided, ClaudeEnvironment will be created from llmProvider
|
package/dist/index.d.ts
CHANGED
|
@@ -19,6 +19,11 @@ interface RuntimeConfig {
|
|
|
19
19
|
* LLM provider for AI model access
|
|
20
20
|
*/
|
|
21
21
|
llmProvider: LLMProvider<ClaudeLLMConfig>;
|
|
22
|
+
/**
|
|
23
|
+
* Base path for runtime data (containers, workdirs, etc.)
|
|
24
|
+
* @example "/Users/john/.agentx"
|
|
25
|
+
*/
|
|
26
|
+
basePath: string;
|
|
22
27
|
/**
|
|
23
28
|
* Optional custom environment (for testing)
|
|
24
29
|
* If not provided, ClaudeEnvironment will be created from llmProvider
|