@tangle-network/agent-runtime 0.94.10 → 0.94.12
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/README.md +65 -1
- package/dist/agent.d.ts +2 -1
- package/dist/agent.js +2 -1
- package/dist/agent.js.map +1 -1
- package/dist/{agentic-generator-1g7GDba7.d.ts → agentic-generator-DDMM45kZ.d.ts} +46 -6
- package/dist/analyst-loop.d.ts +2 -1
- package/dist/backends-BO4Jqoe2.d.ts +134 -0
- package/dist/chunk-AEG3NGJ2.js +639 -0
- package/dist/chunk-AEG3NGJ2.js.map +1 -0
- package/dist/{chunk-GHXW56PO.js → chunk-D3H7F6L2.js} +136 -36
- package/dist/chunk-D3H7F6L2.js.map +1 -0
- package/dist/{chunk-7NCP74SL.js → chunk-PCURO3DL.js} +4 -4
- package/dist/chunk-PCURO3DL.js.map +1 -0
- package/dist/{chunk-YP6B7RZ2.js → chunk-U33YZ7B2.js} +6 -635
- package/dist/chunk-U33YZ7B2.js.map +1 -0
- package/dist/chunk-VYA2YEKA.js +1187 -0
- package/dist/chunk-VYA2YEKA.js.map +1 -0
- package/dist/{chunk-MXBQNVFE.js → chunk-XP5KDM3R.js} +5 -5
- package/dist/{completion-gate-BB4IZwyh.d.ts → completion-gate-D1gX1-hg.d.ts} +2 -2
- package/dist/conversation.d.ts +793 -0
- package/dist/conversation.js +56 -0
- package/dist/conversation.js.map +1 -0
- package/dist/{coordination-CyVQ61My.d.ts → coordination-Dr_axlAf.d.ts} +6 -5
- package/dist/environment-provider.d.ts +3 -2
- package/dist/{improve-DZeatcs7.d.ts → improve-BN3HyXIO.d.ts} +2 -2
- package/dist/index.d.ts +29 -943
- package/dist/index.js +58 -1159
- package/dist/index.js.map +1 -1
- package/dist/intelligence.d.ts +6 -5
- package/dist/intelligence.js +5 -5
- package/dist/knowledge.d.ts +8 -7
- package/dist/lifecycle.d.ts +3 -3
- package/dist/lifecycle.js +1 -1
- package/dist/{local-harness-ZLMkKdZc.d.ts → local-harness-ZqCx51u7.d.ts} +1 -1
- package/dist/{loop-runner-bin-DA3ccCAs.d.ts → loop-runner-bin-BRQSQdHa.d.ts} +2 -2
- package/dist/loop-runner-bin.d.ts +7 -6
- package/dist/loop-runner-bin.js +4 -3
- package/dist/loops.d.ts +16 -15
- package/dist/loops.js +2 -1
- package/dist/mcp/index.d.ts +11 -10
- package/dist/mcp/index.js +2 -1
- package/dist/mcp/index.js.map +1 -1
- package/dist/{mcp-serve-verifier-BO4MEsR3.d.ts → mcp-serve-verifier-DQQDbuyz.d.ts} +1 -1
- package/dist/{openai-tools-0wACz8f8.d.ts → openai-tools-fnj6SRVg.d.ts} +1 -1
- package/dist/primeintellect/index.d.ts +214 -0
- package/dist/primeintellect/index.js +1120 -0
- package/dist/primeintellect/index.js.map +1 -0
- package/dist/profiles.d.ts +2 -1
- package/dist/{sanitize-Dcbjp0tU.d.ts → sanitize-BTSsdBXw.d.ts} +1 -1
- package/dist/{supervise-BaEsCHNh.d.ts → supervise-DmYOug5f.d.ts} +4 -4
- package/dist/{types-CogNCaw7.d.ts → types-1d5QGK3t.d.ts} +1 -1
- package/dist/types-BwoZWq-i.d.ts +510 -0
- package/dist/{types-CKmyZ9TP.d.ts → types-ByAYqlVb.d.ts} +3 -509
- package/dist/{worktree-fanout-Do2YbtFD.d.ts → worktree-fanout-CPprU-qI.d.ts} +4 -4
- package/package.json +15 -3
- package/dist/chunk-7NCP74SL.js.map +0 -1
- package/dist/chunk-GHXW56PO.js.map +0 -1
- package/dist/chunk-YP6B7RZ2.js.map +0 -1
- /package/dist/{chunk-MXBQNVFE.js.map → chunk-XP5KDM3R.js.map} +0 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CircuitBreakerState,
|
|
3
|
+
CircuitOpenError,
|
|
4
|
+
DEFAULT_MAX_DEPTH,
|
|
5
|
+
DeadlineExceededError,
|
|
6
|
+
FORWARD_HEADERS,
|
|
7
|
+
FileConversationJournal,
|
|
8
|
+
InMemoryConversationJournal,
|
|
9
|
+
SqlConversationJournal,
|
|
10
|
+
buildForwardHeaders,
|
|
11
|
+
computeBackoff,
|
|
12
|
+
createConversationBackend,
|
|
13
|
+
d1ToSqlAdapter,
|
|
14
|
+
defaultIsRetryable,
|
|
15
|
+
defineConversation,
|
|
16
|
+
isDepthExceeded,
|
|
17
|
+
makePerAttemptSignal,
|
|
18
|
+
readDepth,
|
|
19
|
+
runConversation,
|
|
20
|
+
runConversationStream,
|
|
21
|
+
runPersonaConversation,
|
|
22
|
+
runPersonaDispatch,
|
|
23
|
+
sleep,
|
|
24
|
+
slugifySpeaker,
|
|
25
|
+
turnId
|
|
26
|
+
} from "./chunk-VYA2YEKA.js";
|
|
27
|
+
import "./chunk-AEG3NGJ2.js";
|
|
28
|
+
import "./chunk-YEJR7IXO.js";
|
|
29
|
+
import "./chunk-DGUM43GV.js";
|
|
30
|
+
export {
|
|
31
|
+
CircuitBreakerState,
|
|
32
|
+
CircuitOpenError,
|
|
33
|
+
DEFAULT_MAX_DEPTH,
|
|
34
|
+
DeadlineExceededError,
|
|
35
|
+
FORWARD_HEADERS,
|
|
36
|
+
FileConversationJournal,
|
|
37
|
+
InMemoryConversationJournal,
|
|
38
|
+
SqlConversationJournal,
|
|
39
|
+
buildForwardHeaders,
|
|
40
|
+
computeBackoff,
|
|
41
|
+
createConversationBackend,
|
|
42
|
+
d1ToSqlAdapter,
|
|
43
|
+
defaultIsRetryable,
|
|
44
|
+
defineConversation,
|
|
45
|
+
isDepthExceeded,
|
|
46
|
+
makePerAttemptSignal,
|
|
47
|
+
readDepth,
|
|
48
|
+
runConversation,
|
|
49
|
+
runConversationStream,
|
|
50
|
+
runPersonaConversation,
|
|
51
|
+
runPersonaDispatch,
|
|
52
|
+
sleep,
|
|
53
|
+
slugifySpeaker,
|
|
54
|
+
turnId
|
|
55
|
+
};
|
|
56
|
+
//# sourceMappingURL=conversation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
import { E as ExecutorFactory, e as ExecutorRegistry, i as Spend, A as Agent, S as Scope, a as ResultBlobStore, B as Budget } from './types-
|
|
1
|
+
import { E as ExecutorFactory, e as ExecutorRegistry, i as Spend, A as Agent, S as Scope, a as ResultBlobStore, B as Budget } from './types-1d5QGK3t.js';
|
|
2
2
|
import { AgentProfile } from '@tangle-network/agent-interface';
|
|
3
3
|
import { U as UiLens, a as UiFinding, C as CoderTask } from './substrate-DO2GHNg2.js';
|
|
4
|
-
import { S as SandboxClient, E as ExecCtx,
|
|
4
|
+
import { S as SandboxClient, E as ExecCtx, r as LoopTraceEmitter, a as LoopTraceEvent, A as AgentRunSpec } from './types-ByAYqlVb.js';
|
|
5
5
|
import { BackendType, SandboxEvent, SandboxInstance } from '@tangle-network/sandbox';
|
|
6
6
|
import { AgentEvalError } from '@tangle-network/agent-eval';
|
|
7
|
-
import { b as ToolSpec, c as RuntimeTelemetryOptions, R as RouterConfig } from './sanitize-
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
7
|
+
import { b as ToolSpec, c as RuntimeTelemetryOptions, R as RouterConfig } from './sanitize-BTSsdBXw.js';
|
|
8
|
+
import { R as RuntimeStreamEvent } from './types-BwoZWq-i.js';
|
|
9
|
+
import { G as GitRunner, a as WorktreeCheckRunner, D as DeliverableSpec } from './completion-gate-D1gX1-hg.js';
|
|
10
|
+
import { L as LocalHarness } from './local-harness-ZqCx51u7.js';
|
|
10
11
|
import { ProviderExecutorOptions, AgentEnvironmentProviderRegistry } from './environment-provider.js';
|
|
11
12
|
import { AgentEnvironmentProvider } from '@tangle-network/agent-interface/environment-provider';
|
|
12
13
|
|
|
@@ -2,9 +2,10 @@ import { AgentProfile, AgentProfileValidationResult } from '@tangle-network/agen
|
|
|
2
2
|
import { CreateAgentEnvironmentInput, AgentTurnInput, AgentEnvironmentProvider, AgentEnvironmentCapabilities, AgentProfileRef } from '@tangle-network/agent-interface/environment-provider';
|
|
3
3
|
export { AgentEnvironment, AgentEnvironmentCapabilities, AgentEnvironmentEvent, AgentEnvironmentProvider, AgentEnvironmentQuery, AgentEnvironmentStatus, AgentEnvironmentSummary, AgentProfileRef, AgentSession, AgentSessionRef, AgentSessionStatus, AgentTurnInput, AgentTurnResult, CheckpointRef, CheckpointRequest, CreateAgentEnvironmentInput, ExecRequest, ExecResult, ForkRequest, PlacementInfo, ResourceRequest, WorkspaceRequest } from '@tangle-network/agent-interface/environment-provider';
|
|
4
4
|
import { CreateSandboxOptions, BackendType } from '@tangle-network/sandbox';
|
|
5
|
-
import { R as Runtime, E as ExecutorFactory } from './types-
|
|
6
|
-
import { S as SandboxClient } from './types-
|
|
5
|
+
import { R as Runtime, E as ExecutorFactory } from './types-1d5QGK3t.js';
|
|
6
|
+
import { S as SandboxClient } from './types-ByAYqlVb.js';
|
|
7
7
|
import '@tangle-network/agent-eval';
|
|
8
|
+
import './types-BwoZWq-i.js';
|
|
8
9
|
|
|
9
10
|
/** Provider object or registry name accepted by runtime provider adapters.
|
|
10
11
|
* @experimental */
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { WorktreeAdapter } from '@tangle-network/agent-eval/campaign';
|
|
2
2
|
import { Scenario, SelfImproveOptions, SurfaceProposer, SelfImproveResult, MutableSurface } from '@tangle-network/agent-eval/contract';
|
|
3
3
|
import { AgentProfile } from '@tangle-network/agent-interface';
|
|
4
|
-
import { L as LocalHarness } from './local-harness-
|
|
5
|
-
import { V as Verifier, C as CandidateGenerator } from './agentic-generator-
|
|
4
|
+
import { L as LocalHarness } from './local-harness-ZqCx51u7.js';
|
|
5
|
+
import { V as Verifier, C as CandidateGenerator } from './agentic-generator-DDMM45kZ.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
*
|