@agentxjs/runtime 0.1.6 → 0.1.7
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 +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -2432,6 +2432,7 @@ var RuntimeAgent = class {
|
|
|
2432
2432
|
baseUrl: config.llmConfig.baseUrl,
|
|
2433
2433
|
model: config.llmConfig.model,
|
|
2434
2434
|
systemPrompt: config.config.systemPrompt,
|
|
2435
|
+
cwd: config.sandbox.workdir.path,
|
|
2435
2436
|
resumeSessionId,
|
|
2436
2437
|
onSessionIdCaptured: (sdkSessionId) => {
|
|
2437
2438
|
this.saveSessionId(sdkSessionId);
|
|
@@ -2442,6 +2443,7 @@ var RuntimeAgent = class {
|
|
|
2442
2443
|
logger9.info("ClaudeEnvironment created for agent", {
|
|
2443
2444
|
agentId: this.agentId,
|
|
2444
2445
|
imageId: this.imageId,
|
|
2446
|
+
cwd: config.sandbox.workdir.path,
|
|
2445
2447
|
resumeSessionId: resumeSessionId ?? "none",
|
|
2446
2448
|
isResume: !!resumeSessionId,
|
|
2447
2449
|
imageMetadata: config.image.metadata
|