effect-agent 0.1.0-beta.24 → 0.1.0-beta.25
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 +4 -4
- package/src/index.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "effect-agent",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.25",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./dist/index.d.mts",
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
}
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@effect-agent/capabilities": "0.1.0-beta.
|
|
12
|
-
"@effect-agent/core": "0.1.0-beta.
|
|
13
|
-
"@effect-agent/engine": "0.1.0-beta.
|
|
11
|
+
"@effect-agent/capabilities": "0.1.0-beta.25",
|
|
12
|
+
"@effect-agent/core": "0.1.0-beta.25",
|
|
13
|
+
"@effect-agent/engine": "0.1.0-beta.25",
|
|
14
14
|
"effect": "4.0.0-rc.110"
|
|
15
15
|
},
|
|
16
16
|
"description": "Effect-native autonomous agents: the complete pure authoring and running surface of the Effect Agent framework in one package — schema-first definitions, the bounded interpreter, and operational capabilities.",
|
package/src/index.ts
CHANGED
|
@@ -17,6 +17,7 @@ export * from "@effect-agent/engine";
|
|
|
17
17
|
// Explicit re-exports resolve the star-export ambiguities so these names
|
|
18
18
|
// stay present on the umbrella: `capabilities` re-exports the two core-owned
|
|
19
19
|
// delegation-naming helpers, and both `engine` (type only) and `capabilities`
|
|
20
|
-
// (Schema value + type) declare
|
|
20
|
+
// (Schema value + type) declare CommandDrainPolicy and RunSchedulingOverride;
|
|
21
|
+
// the Schema forms win.
|
|
21
22
|
export { delegationToolPrefix, isDelegationToolName } from "@effect-agent/core";
|
|
22
23
|
export { CommandDrainPolicy, RunSchedulingOverride } from "@effect-agent/capabilities";
|