@kortyx/agent 0.3.0 → 0.4.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/CHANGELOG.md +12 -0
- package/dist/chat/create-agent.d.ts.map +1 -1
- package/dist/chat/create-agent.js +11 -1
- package/dist/chat/process-chat.d.ts +4 -3
- package/dist/chat/process-chat.d.ts.map +1 -1
- package/dist/chat/process-chat.js +36 -12
- package/dist/interrupt/resume-handler.d.ts +4 -4
- package/dist/interrupt/resume-handler.d.ts.map +1 -1
- package/dist/interrupt/resume-handler.js +40 -27
- package/dist/orchestrator.d.ts +5 -3
- package/dist/orchestrator.d.ts.map +1 -1
- package/dist/orchestrator.js +49 -23
- package/package.json +17 -17
- package/LICENSE +0 -201
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.0](https://github.com/kortyx-io/Kortyx/compare/agent-v0.3.0...agent-v0.4.0) (2026-02-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **runtime:** framework persistence adapter ([8383ad2](https://github.com/kortyx-io/Kortyx/commit/8383ad2d73754ccf4daf33e414e15c3ce44df8cb))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **agent:** remove explicit any in chat flow ([fcd701c](https://github.com/kortyx-io/Kortyx/commit/fcd701cfb6cb5f037900bbf0b396230603d16877))
|
|
14
|
+
|
|
3
15
|
## [0.3.0](https://github.com/kortyx-io/kortyx/compare/agent-v0.2.2...agent-v0.3.0) (2026-01-25)
|
|
4
16
|
|
|
5
17
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-agent.d.ts","sourceRoot":"","sources":["../../src/chat/create-agent.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"create-agent.d.ts","sourceRoot":"","sources":["../../src/chat/create-agent.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAEV,YAAY,EACZ,gBAAgB,EACjB,MAAM,iBAAiB,CAAC;AAMzB,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAGtD,MAAM,WAAW,eAAe,CAC9B,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACtC,OAAO,CACP,SAAQ,IAAI,CACV,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC,EAChC,UAAU,GAAG,SAAS,GAAG,gBAAgB,GAAG,kBAAkB,CAC/D;IACD,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,cAAc,CAAC,EAAE,gBAAgB,CAAC;IAClC,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,wBAAgB,WAAW,CACzB,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACtC,OAAO,GAAG,OAAO,EACjB,IAAI,EAAE,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC;4BAoDN,WAAW,EAAE,YAAY,OAAO;EAiCjE"}
|
|
@@ -5,7 +5,9 @@ const node_path_1 = require("node:path");
|
|
|
5
5
|
const runtime_1 = require("@kortyx/runtime");
|
|
6
6
|
const process_chat_1 = require("./process-chat");
|
|
7
7
|
function createAgent(args) {
|
|
8
|
-
const { workflowsDir, workflowRegistry, selectWorkflow, fallbackWorkflowId, config, configPath, ...baseArgs } = args;
|
|
8
|
+
const { workflowsDir, workflowRegistry, selectWorkflow, fallbackWorkflowId, config, configPath, defaultWorkflowId, frameworkAdapter, ...baseArgs } = args;
|
|
9
|
+
const resolvedDefaultWorkflowId = defaultWorkflowId ?? config?.fallbackWorkflowId ?? fallbackWorkflowId;
|
|
10
|
+
const resolvedFrameworkAdapter = frameworkAdapter ?? (0, runtime_1.createFrameworkAdapterFromEnv)();
|
|
9
11
|
const resolvedCwd = process.cwd();
|
|
10
12
|
const registryPromise = (async () => {
|
|
11
13
|
if (workflowRegistry)
|
|
@@ -41,9 +43,13 @@ function createAgent(args) {
|
|
|
41
43
|
if (selectWorkflow) {
|
|
42
44
|
return (0, process_chat_1.processChat)({
|
|
43
45
|
...baseArgs,
|
|
46
|
+
...(resolvedDefaultWorkflowId
|
|
47
|
+
? { defaultWorkflowId: resolvedDefaultWorkflowId }
|
|
48
|
+
: {}),
|
|
44
49
|
messages,
|
|
45
50
|
options,
|
|
46
51
|
selectWorkflow,
|
|
52
|
+
frameworkAdapter: resolvedFrameworkAdapter,
|
|
47
53
|
});
|
|
48
54
|
}
|
|
49
55
|
const registry = await registryPromise;
|
|
@@ -52,9 +58,13 @@ function createAgent(args) {
|
|
|
52
58
|
}
|
|
53
59
|
return (0, process_chat_1.processChat)({
|
|
54
60
|
...baseArgs,
|
|
61
|
+
...(resolvedDefaultWorkflowId
|
|
62
|
+
? { defaultWorkflowId: resolvedDefaultWorkflowId }
|
|
63
|
+
: {}),
|
|
55
64
|
messages,
|
|
56
65
|
options,
|
|
57
66
|
workflowRegistry: registry,
|
|
67
|
+
frameworkAdapter: resolvedFrameworkAdapter,
|
|
58
68
|
});
|
|
59
69
|
},
|
|
60
70
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { MemoryAdapter } from "@kortyx/memory";
|
|
2
2
|
import type { GetProviderFn } from "@kortyx/providers";
|
|
3
|
-
import type { WorkflowRegistry } from "@kortyx/runtime";
|
|
3
|
+
import type { FrameworkAdapter, WorkflowRegistry } from "@kortyx/runtime";
|
|
4
4
|
import type { ApplyResumeSelection } from "../interrupt/resume-handler";
|
|
5
5
|
import type { SelectWorkflowFn } from "../orchestrator";
|
|
6
6
|
import type { ChatMessage } from "../types/chat-message";
|
|
@@ -15,11 +15,12 @@ export interface ProcessChatArgs<Config extends Record<string, unknown>, Options
|
|
|
15
15
|
loadRuntimeConfig: (options?: Options) => Config | Promise<Config>;
|
|
16
16
|
selectWorkflow?: SelectWorkflowFn;
|
|
17
17
|
workflowRegistry?: WorkflowRegistry;
|
|
18
|
+
frameworkAdapter?: FrameworkAdapter;
|
|
18
19
|
getProvider: GetProviderFn;
|
|
19
20
|
initializeProviders?: InitializeProvidersFn<Config>;
|
|
20
|
-
memoryAdapter
|
|
21
|
+
memoryAdapter?: MemoryAdapter;
|
|
21
22
|
applyResumeSelection?: ApplyResumeSelection;
|
|
22
23
|
}
|
|
23
|
-
export declare function processChat<Config extends Record<string, unknown>, Options = unknown>({ messages, options, sessionId, defaultWorkflowId, loadRuntimeConfig, selectWorkflow, workflowRegistry, getProvider, initializeProviders, memoryAdapter, applyResumeSelection, }: ProcessChatArgs<Config, Options>): Promise<Response>;
|
|
24
|
+
export declare function processChat<Config extends Record<string, unknown>, Options = unknown>({ messages, options, sessionId, defaultWorkflowId, loadRuntimeConfig, selectWorkflow, workflowRegistry, frameworkAdapter, getProvider, initializeProviders, memoryAdapter, applyResumeSelection, }: ProcessChatArgs<Config, Options>): Promise<Response>;
|
|
24
25
|
export {};
|
|
25
26
|
//# sourceMappingURL=process-chat.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"process-chat.d.ts","sourceRoot":"","sources":["../../src/chat/process-chat.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"process-chat.d.ts","sourceRoot":"","sources":["../../src/chat/process-chat.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAO1E,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AAKxE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAExD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAGzD,KAAK,qBAAqB,CAAC,MAAM,IAAI,CACnC,QAAQ,EAAE,MAAM,SAAS;IAAE,EAAE,EAAE,MAAM,CAAC,CAAA;CAAE,GAAG,CAAC,GAAG,OAAO,KACnD,IAAI,CAAC;AAEV,MAAM,WAAW,eAAe,CAC9B,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACtC,OAAO;IAEP,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,iBAAiB,EAAE,CAAC,OAAO,CAAC,EAAE,OAAO,KAAK,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,CAAC;IACnE,cAAc,CAAC,EAAE,gBAAgB,CAAC;IAClC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;IACpC,WAAW,EAAE,aAAa,CAAC;IAC3B,mBAAmB,CAAC,EAAE,qBAAqB,CAAC,MAAM,CAAC,CAAC;IACpD,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;CAC7C;AAED,wBAAsB,WAAW,CAC/B,MAAM,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACtC,OAAO,GAAG,OAAO,EACjB,EACA,QAAQ,EACR,OAAO,EACP,SAAS,EACT,iBAAiB,EACjB,iBAAiB,EACjB,cAAc,EACd,gBAAgB,EAChB,gBAAgB,EAChB,WAAW,EACX,mBAAmB,EACnB,aAAa,EACb,oBAAoB,GACrB,EAAE,eAAe,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,QAAQ,CAAC,CAyGtD"}
|
|
@@ -6,15 +6,21 @@ const stream_1 = require("@kortyx/stream");
|
|
|
6
6
|
const resume_handler_1 = require("../interrupt/resume-handler");
|
|
7
7
|
const orchestrator_1 = require("../orchestrator");
|
|
8
8
|
const extract_latest_message_1 = require("../utils/extract-latest-message");
|
|
9
|
-
async function processChat({ messages, options, sessionId, defaultWorkflowId, loadRuntimeConfig, selectWorkflow, workflowRegistry, getProvider, initializeProviders, memoryAdapter, applyResumeSelection, }) {
|
|
9
|
+
async function processChat({ messages, options, sessionId, defaultWorkflowId, loadRuntimeConfig, selectWorkflow, workflowRegistry, frameworkAdapter, getProvider, initializeProviders, memoryAdapter, applyResumeSelection, }) {
|
|
10
10
|
const config = await loadRuntimeConfig(options);
|
|
11
11
|
if (initializeProviders) {
|
|
12
|
-
|
|
12
|
+
const ai = config.ai;
|
|
13
|
+
initializeProviders((ai && typeof ai === "object" && !Array.isArray(ai)
|
|
14
|
+
? ai
|
|
15
|
+
: {}));
|
|
13
16
|
}
|
|
14
17
|
const runtimeConfig = {
|
|
15
18
|
...config,
|
|
16
19
|
getProvider,
|
|
17
20
|
...(memoryAdapter ? { memoryAdapter } : {}),
|
|
21
|
+
...(frameworkAdapter
|
|
22
|
+
? { checkpointer: frameworkAdapter.checkpointer }
|
|
23
|
+
: {}),
|
|
18
24
|
};
|
|
19
25
|
const workflowSelector = selectWorkflow ??
|
|
20
26
|
(workflowRegistry ? (id) => workflowRegistry.select(id) : null);
|
|
@@ -27,43 +33,61 @@ async function processChat({ messages, options, sessionId, defaultWorkflowId, lo
|
|
|
27
33
|
const last = messages[messages.length - 1];
|
|
28
34
|
const input = (0, extract_latest_message_1.extractLatestUserMessage)(messages);
|
|
29
35
|
const previousMessages = messages.slice(0, -1);
|
|
30
|
-
const storedState = await memoryAdapter.load(resolvedSessionId);
|
|
31
36
|
const memory = {
|
|
32
|
-
...(
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}),
|
|
37
|
+
...(previousMessages.length > 0
|
|
38
|
+
? { conversationMessages: previousMessages }
|
|
39
|
+
: {}),
|
|
36
40
|
};
|
|
41
|
+
const isResumeRequest = Boolean((0, resume_handler_1.parseResumeMeta)(last));
|
|
42
|
+
const requestedWorkflowId = (() => {
|
|
43
|
+
if (!options)
|
|
44
|
+
return undefined;
|
|
45
|
+
if (typeof options !== "object")
|
|
46
|
+
return undefined;
|
|
47
|
+
const record = options;
|
|
48
|
+
const wfId = record.workflowId;
|
|
49
|
+
if (typeof wfId === "string")
|
|
50
|
+
return wfId;
|
|
51
|
+
const wf = record.workflow;
|
|
52
|
+
if (typeof wf === "string")
|
|
53
|
+
return wf;
|
|
54
|
+
return undefined;
|
|
55
|
+
})();
|
|
56
|
+
if (!isResumeRequest && requestedWorkflowId) {
|
|
57
|
+
if (requestedWorkflowId.trim() === "")
|
|
58
|
+
delete memory.currentWorkflow;
|
|
59
|
+
else
|
|
60
|
+
memory.currentWorkflow = requestedWorkflowId;
|
|
61
|
+
}
|
|
37
62
|
const baseState = await (0, runtime_1.buildInitialGraphState)({
|
|
38
63
|
input,
|
|
39
64
|
config: runtimeConfig,
|
|
40
65
|
memory,
|
|
41
66
|
...(defaultWorkflowId ? { defaultWorkflowId } : {}),
|
|
42
67
|
});
|
|
43
|
-
const saveMemory = async (activeSessionId, state) => {
|
|
44
|
-
await memoryAdapter.save(activeSessionId, state);
|
|
45
|
-
};
|
|
46
68
|
const resumeStream = await (0, resume_handler_1.tryPrepareResumeStream)({
|
|
47
69
|
lastMessage: last,
|
|
48
70
|
sessionId: resolvedSessionId,
|
|
49
71
|
config: runtimeConfig,
|
|
50
|
-
saveMemory,
|
|
51
72
|
selectWorkflow: workflowSelector,
|
|
73
|
+
...(frameworkAdapter ? { frameworkAdapter } : {}),
|
|
52
74
|
...(defaultWorkflowId ? { defaultWorkflowId } : {}),
|
|
53
75
|
...(applyResumeSelection ? { applyResumeSelection } : {}),
|
|
54
76
|
});
|
|
55
77
|
if (resumeStream)
|
|
56
78
|
return (0, stream_1.createStreamResponse)(resumeStream);
|
|
79
|
+
const runId = (0, runtime_1.makeRequestId)("run");
|
|
57
80
|
const currentWorkflow = baseState.currentWorkflow;
|
|
58
81
|
const selectedWorkflow = await workflowSelector(currentWorkflow);
|
|
59
82
|
const graph = await (0, runtime_1.createLangGraph)(selectedWorkflow, runtimeConfig);
|
|
60
83
|
const orchestratedStream = await (0, orchestrator_1.orchestrateGraphStream)({
|
|
61
84
|
sessionId: resolvedSessionId,
|
|
85
|
+
runId,
|
|
62
86
|
graph,
|
|
63
87
|
state: { ...baseState, currentWorkflow },
|
|
64
88
|
config: runtimeConfig,
|
|
65
|
-
saveMemory,
|
|
66
89
|
selectWorkflow: workflowSelector,
|
|
90
|
+
...(frameworkAdapter ? { frameworkAdapter } : {}),
|
|
67
91
|
});
|
|
68
92
|
return (0, stream_1.createStreamResponse)(orchestratedStream);
|
|
69
93
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import type { FrameworkAdapter, PendingRequestRecord } from "@kortyx/runtime";
|
|
2
2
|
import type { StreamChunk } from "@kortyx/stream";
|
|
3
|
-
import type {
|
|
3
|
+
import type { SelectWorkflowFn } from "../orchestrator";
|
|
4
4
|
import type { ChatMessage } from "../types/chat-message";
|
|
5
5
|
export interface ResumeMeta {
|
|
6
6
|
token: string;
|
|
@@ -17,11 +17,11 @@ interface TryResumeArgs {
|
|
|
17
17
|
lastMessage: ChatMessage | undefined;
|
|
18
18
|
sessionId: string;
|
|
19
19
|
config: Record<string, unknown>;
|
|
20
|
-
saveMemory?: SaveMemoryFn;
|
|
21
20
|
selectWorkflow: SelectWorkflowFn;
|
|
22
21
|
defaultWorkflowId?: string;
|
|
23
22
|
applyResumeSelection?: ApplyResumeSelection;
|
|
23
|
+
frameworkAdapter?: FrameworkAdapter;
|
|
24
24
|
}
|
|
25
|
-
export declare function tryPrepareResumeStream({ lastMessage, sessionId, config,
|
|
25
|
+
export declare function tryPrepareResumeStream({ lastMessage, sessionId, config, selectWorkflow, defaultWorkflowId, applyResumeSelection, frameworkAdapter, }: TryResumeArgs): Promise<AsyncIterable<StreamChunk> | null>;
|
|
26
26
|
export {};
|
|
27
27
|
//# sourceMappingURL=resume-handler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resume-handler.d.ts","sourceRoot":"","sources":["../../src/interrupt/resume-handler.ts"],"names":[],"mappings":"AACA,OAAO,
|
|
1
|
+
{"version":3,"file":"resume-handler.d.ts","sourceRoot":"","sources":["../../src/interrupt/resume-handler.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,gBAAgB,EAChB,oBAAoB,EAErB,MAAM,iBAAiB,CAAC;AAEzB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAClD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AAExD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAEzD,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,MAAM,oBAAoB,GAAG,CAAC,IAAI,EAAE;IACxC,OAAO,EAAE,oBAAoB,CAAC;IAC9B,QAAQ,EAAE,MAAM,EAAE,CAAC;CACpB,KAAK,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,GAAG,SAAS,CAAC;AAKjD,wBAAgB,eAAe,CAC7B,GAAG,EAAE,WAAW,GAAG,SAAS,GAC3B,UAAU,GAAG,IAAI,CAuBnB;AAED,UAAU,aAAa;IACrB,WAAW,EAAE,WAAW,GAAG,SAAS,CAAC;IACrC,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,cAAc,EAAE,gBAAgB,CAAC;IACjC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;IAC5C,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;CACrC;AAED,wBAAsB,sBAAsB,CAAC,EAC3C,WAAW,EACX,SAAS,EACT,MAAM,EACN,cAAc,EACd,iBAAiB,EACjB,oBAAoB,EACpB,gBAAgB,GACjB,EAAE,aAAa,GAAG,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CA6F5D"}
|
|
@@ -2,42 +2,48 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.parseResumeMeta = parseResumeMeta;
|
|
4
4
|
exports.tryPrepareResumeStream = tryPrepareResumeStream;
|
|
5
|
-
const memory_1 = require("@kortyx/memory");
|
|
6
5
|
const runtime_1 = require("@kortyx/runtime");
|
|
7
6
|
const orchestrator_1 = require("../orchestrator");
|
|
7
|
+
const isRecord = (value) => Boolean(value) && typeof value === "object" && !Array.isArray(value);
|
|
8
8
|
function parseResumeMeta(msg) {
|
|
9
9
|
if (!msg || !msg.metadata)
|
|
10
10
|
return null;
|
|
11
|
-
const raw = msg.metadata
|
|
12
|
-
if (!raw)
|
|
11
|
+
const raw = msg.metadata.resume;
|
|
12
|
+
if (!isRecord(raw))
|
|
13
13
|
return null;
|
|
14
14
|
const token = typeof raw.token === "string" ? raw.token : "";
|
|
15
15
|
const requestId = typeof raw.requestId === "string" ? raw.requestId : "";
|
|
16
|
-
const cancel =
|
|
16
|
+
const cancel = raw.cancel === true;
|
|
17
17
|
let selected = [];
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
18
|
+
const rawSelected = raw.selected;
|
|
19
|
+
if (typeof rawSelected === "string")
|
|
20
|
+
selected = [rawSelected];
|
|
21
|
+
else if (Array.isArray(rawSelected))
|
|
22
|
+
selected = rawSelected.map(String);
|
|
23
|
+
else if (isRecord(raw.choice) && typeof raw.choice.id === "string")
|
|
24
|
+
selected = [raw.choice.id];
|
|
25
|
+
else if (Array.isArray(raw.choices))
|
|
26
|
+
selected = raw.choices
|
|
27
|
+
.map((c) => (isRecord(c) ? c.id : undefined))
|
|
28
|
+
.filter((id) => typeof id === "string");
|
|
26
29
|
if (!token || !requestId)
|
|
27
30
|
return null;
|
|
28
31
|
return { token, requestId, selected, cancel };
|
|
29
32
|
}
|
|
30
|
-
async function tryPrepareResumeStream({ lastMessage, sessionId, config,
|
|
33
|
+
async function tryPrepareResumeStream({ lastMessage, sessionId, config, selectWorkflow, defaultWorkflowId, applyResumeSelection, frameworkAdapter, }) {
|
|
31
34
|
const meta = parseResumeMeta(lastMessage);
|
|
32
35
|
if (!meta)
|
|
33
36
|
return null;
|
|
34
|
-
const
|
|
37
|
+
const store = frameworkAdapter?.pendingRequests;
|
|
38
|
+
if (!store)
|
|
39
|
+
return null;
|
|
40
|
+
const pending = await store.get(meta.token);
|
|
35
41
|
if (!pending || pending.requestId !== meta.requestId) {
|
|
36
42
|
console.log(`[resume] pending not found or mismatched. token=${meta.token} requestId=${meta.requestId}`);
|
|
37
43
|
return null;
|
|
38
44
|
}
|
|
39
45
|
if (meta.cancel) {
|
|
40
|
-
|
|
46
|
+
await store.delete(pending.token);
|
|
41
47
|
return null;
|
|
42
48
|
}
|
|
43
49
|
console.log(`[resume] token=${meta.token} requestId=${meta.requestId} selected=${JSON.stringify(meta.selected)} sessionId=${sessionId}`);
|
|
@@ -46,33 +52,41 @@ async function tryPrepareResumeStream({ lastMessage, sessionId, config, saveMemo
|
|
|
46
52
|
: meta.selected?.length
|
|
47
53
|
? { coordinates: String(meta.selected[0]) }
|
|
48
54
|
: {};
|
|
49
|
-
const resumeDataPatch = resumeData
|
|
55
|
+
const resumeDataPatch = isRecord(resumeData) ? resumeData : {};
|
|
56
|
+
const pendingData = isRecord(pending.state?.data) ? pending.state?.data : {};
|
|
57
|
+
const workflowId = typeof pending.workflow === "string" && pending.workflow.trim()
|
|
58
|
+
? pending.workflow
|
|
59
|
+
: typeof defaultWorkflowId === "string" && defaultWorkflowId.trim()
|
|
60
|
+
? defaultWorkflowId
|
|
61
|
+
: "job-search";
|
|
50
62
|
const resumedState = {
|
|
51
63
|
input: "",
|
|
52
64
|
lastNode: "__start__",
|
|
53
|
-
currentWorkflow:
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
config: config,
|
|
65
|
+
currentWorkflow: workflowId,
|
|
66
|
+
config,
|
|
67
|
+
memory: {},
|
|
57
68
|
conversationHistory: [],
|
|
58
69
|
awaitingHumanInput: false,
|
|
59
70
|
data: {
|
|
60
|
-
...
|
|
71
|
+
...pendingData,
|
|
61
72
|
...resumeDataPatch,
|
|
62
73
|
},
|
|
63
74
|
};
|
|
64
75
|
const wf = await selectWorkflow(resumedState.currentWorkflow);
|
|
65
|
-
const resumeValue = meta.selected?.length
|
|
66
|
-
?
|
|
67
|
-
:
|
|
76
|
+
const resumeValue = meta.selected?.length && pending.schema.kind === "multi-choice"
|
|
77
|
+
? meta.selected.map((x) => String(x))
|
|
78
|
+
: meta.selected?.length
|
|
79
|
+
? String(meta.selected[0])
|
|
80
|
+
: undefined;
|
|
68
81
|
const resumedGraph = await (0, runtime_1.createLangGraph)(wf, {
|
|
69
82
|
...config,
|
|
70
83
|
resume: true,
|
|
71
84
|
...(resumeValue !== undefined ? { resumeValue } : {}),
|
|
72
85
|
});
|
|
73
|
-
|
|
86
|
+
await store.delete(pending.token);
|
|
74
87
|
const args = {
|
|
75
88
|
sessionId,
|
|
89
|
+
runId: pending.runId,
|
|
76
90
|
graph: resumedGraph,
|
|
77
91
|
state: resumedState,
|
|
78
92
|
config: {
|
|
@@ -81,9 +95,8 @@ async function tryPrepareResumeStream({ lastMessage, sessionId, config, saveMemo
|
|
|
81
95
|
...(resumeValue !== undefined ? { resumeValue } : {}),
|
|
82
96
|
},
|
|
83
97
|
selectWorkflow,
|
|
98
|
+
...(frameworkAdapter ? { frameworkAdapter } : {}),
|
|
84
99
|
};
|
|
85
|
-
if (saveMemory)
|
|
86
|
-
args.saveMemory = saveMemory;
|
|
87
100
|
const stream = await (0, orchestrator_1.orchestrateGraphStream)(args);
|
|
88
101
|
return stream;
|
|
89
102
|
}
|
package/dist/orchestrator.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { GraphState, WorkflowDefinition } from "@kortyx/core";
|
|
2
|
-
|
|
2
|
+
import { type FrameworkAdapter } from "@kortyx/runtime";
|
|
3
|
+
export type SelectWorkflowFn = (workflowId: string) => Promise<WorkflowDefinition>;
|
|
3
4
|
export type SaveMemoryFn = (sessionId: string, state: GraphState) => Promise<void>;
|
|
4
5
|
export interface CompiledGraphLike {
|
|
5
6
|
config?: Record<string, unknown>;
|
|
@@ -10,11 +11,12 @@ export interface CompiledGraphLike {
|
|
|
10
11
|
}
|
|
11
12
|
export interface OrchestrateArgs {
|
|
12
13
|
sessionId?: string;
|
|
14
|
+
runId: string;
|
|
13
15
|
graph: CompiledGraphLike;
|
|
14
16
|
state: GraphState;
|
|
15
17
|
config: Record<string, unknown>;
|
|
16
|
-
saveMemory?: SaveMemoryFn;
|
|
17
18
|
selectWorkflow: SelectWorkflowFn;
|
|
19
|
+
frameworkAdapter?: FrameworkAdapter;
|
|
18
20
|
}
|
|
19
|
-
export declare function orchestrateGraphStream({ sessionId, graph, state, config,
|
|
21
|
+
export declare function orchestrateGraphStream({ sessionId, runId, graph, state, config, selectWorkflow, frameworkAdapter, }: OrchestrateArgs): Promise<NodeJS.ReadableStream>;
|
|
20
22
|
//# sourceMappingURL=orchestrator.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAc,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"orchestrator.d.ts","sourceRoot":"","sources":["../src/orchestrator.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAc,MAAM,cAAc,CAAC;AAC/E,OAAO,EAEL,KAAK,gBAAgB,EAKtB,MAAM,iBAAiB,CAAC;AAKzB,MAAM,MAAM,gBAAgB,GAAG,CAC7B,UAAU,EAAE,MAAM,KACf,OAAO,CAAC,kBAAkB,CAAC,CAAC;AAEjC,MAAM,MAAM,YAAY,GAAG,CACzB,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,UAAU,KACd,OAAO,CAAC,IAAI,CAAC,CAAC;AAEnB,MAAM,WAAW,iBAAiB;IAChC,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACjC,YAAY,EAAE,CACZ,KAAK,EAAE,UAAU,EACjB,OAAO,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,MAAM,CAAC;QAAC,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAA;KAAE,KACnE,aAAa,CAAC,OAAO,CAAC,GAAG,cAAc,CAAC,OAAO,CAAC,CAAC;CACvD;AAED,MAAM,WAAW,eAAe;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,iBAAiB,CAAC;IACzB,KAAK,EAAE,UAAU,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAChC,cAAc,EAAE,gBAAgB,CAAC;IACjC,gBAAgB,CAAC,EAAE,gBAAgB,CAAC;CACrC;AAQD,wBAAsB,sBAAsB,CAAC,EAC3C,SAAS,EACT,KAAK,EACL,KAAK,EACL,KAAK,EACL,MAAM,EACN,cAAc,EACd,gBAAgB,GACjB,EAAE,eAAe,GAAG,OAAO,CAAC,MAAM,CAAC,cAAc,CAAC,CAkgBlD"}
|
package/dist/orchestrator.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.orchestrateGraphStream = orchestrateGraphStream;
|
|
4
4
|
const node_stream_1 = require("node:stream");
|
|
5
|
-
const memory_1 = require("@kortyx/memory");
|
|
6
5
|
const runtime_1 = require("@kortyx/runtime");
|
|
7
6
|
const langgraph_1 = require("@langchain/langgraph");
|
|
8
7
|
const transform_graph_stream_for_ui_1 = require("./stream/transform-graph-stream-for-ui");
|
|
9
|
-
async function orchestrateGraphStream({ sessionId, graph, state, config,
|
|
8
|
+
async function orchestrateGraphStream({ sessionId, runId, graph, state, config, selectWorkflow, frameworkAdapter, }) {
|
|
10
9
|
const out = new node_stream_1.PassThrough({ objectMode: true });
|
|
11
10
|
let currentGraph = graph;
|
|
12
11
|
let currentState = state;
|
|
13
12
|
let finished = false;
|
|
13
|
+
const namespacesUsed = new Set();
|
|
14
14
|
try {
|
|
15
15
|
const sid = config?.session?.id;
|
|
16
16
|
if (sid && typeof sid === "string") {
|
|
@@ -28,6 +28,8 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
28
28
|
let pendingRecordToken = null;
|
|
29
29
|
let activeIsResume = false;
|
|
30
30
|
let wroteHumanInput = false;
|
|
31
|
+
const pendingStore = frameworkAdapter?.pendingRequests;
|
|
32
|
+
const pendingTtlMs = frameworkAdapter?.ttlMs ?? 15 * 60 * 1000;
|
|
31
33
|
const forwardEmit = (event, payload) => {
|
|
32
34
|
if (event === "error") {
|
|
33
35
|
const msg = String(payload?.message ?? "Unexpected error");
|
|
@@ -124,6 +126,7 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
124
126
|
token,
|
|
125
127
|
requestId,
|
|
126
128
|
sessionId: sessionId,
|
|
129
|
+
runId,
|
|
127
130
|
workflow: local.workflow || currentState.currentWorkflow,
|
|
128
131
|
node: local.node || "",
|
|
129
132
|
state: { ...currentState, awaitingHumanInput: true },
|
|
@@ -147,9 +150,13 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
147
150
|
value: o.value,
|
|
148
151
|
})),
|
|
149
152
|
createdAt: Date.now(),
|
|
150
|
-
ttlMs:
|
|
153
|
+
ttlMs: pendingTtlMs,
|
|
151
154
|
};
|
|
152
|
-
|
|
155
|
+
if (pendingStore) {
|
|
156
|
+
pendingStore.save(record).catch((e) => {
|
|
157
|
+
console.error("[orchestrator] failed to save pending request", e);
|
|
158
|
+
});
|
|
159
|
+
}
|
|
153
160
|
out.write({
|
|
154
161
|
type: "interrupt",
|
|
155
162
|
requestId: record.requestId,
|
|
@@ -179,9 +186,11 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
179
186
|
const threadId = currentGraph.config?.session?.id ||
|
|
180
187
|
sessionId ||
|
|
181
188
|
"anonymous-session";
|
|
189
|
+
const checkpointNs = String(currentState.currentWorkflow || "default");
|
|
190
|
+
namespacesUsed.add(checkpointNs);
|
|
182
191
|
out.write({
|
|
183
192
|
type: "status",
|
|
184
|
-
message: `🧵 thread_id=${threadId} workflow=${currentState.currentWorkflow}`,
|
|
193
|
+
message: `🧵 thread_id=${threadId} run_id=${runId} workflow=${currentState.currentWorkflow}`,
|
|
185
194
|
});
|
|
186
195
|
const isResume = Boolean(currentGraph.config?.resume);
|
|
187
196
|
activeIsResume = isResume;
|
|
@@ -197,14 +206,14 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
197
206
|
const runtimeStream = currentGraph.streamEvents(invokeState, {
|
|
198
207
|
version: "v2",
|
|
199
208
|
configurable: {
|
|
200
|
-
thread_id:
|
|
201
|
-
checkpoint_ns:
|
|
209
|
+
thread_id: runId,
|
|
210
|
+
checkpoint_ns: checkpointNs,
|
|
202
211
|
},
|
|
203
212
|
});
|
|
204
213
|
try {
|
|
205
214
|
out.write({
|
|
206
215
|
type: "status",
|
|
207
|
-
message: `▶️ streamEvents invoke: resume=${Boolean(currentGraph.config?.resume)} thread_id=${threadId} ns=${String(currentState.currentWorkflow || "default")}`,
|
|
216
|
+
message: `▶️ streamEvents invoke: resume=${Boolean(currentGraph.config?.resume)} thread_id=${threadId} run_id=${runId} ns=${String(currentState.currentWorkflow || "default")}`,
|
|
208
217
|
});
|
|
209
218
|
}
|
|
210
219
|
catch { }
|
|
@@ -235,6 +244,7 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
235
244
|
token,
|
|
236
245
|
requestId,
|
|
237
246
|
sessionId: sessionId,
|
|
247
|
+
runId,
|
|
238
248
|
workflow: currentState.currentWorkflow,
|
|
239
249
|
node: node || "",
|
|
240
250
|
state: {
|
|
@@ -261,9 +271,11 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
261
271
|
value: o.value,
|
|
262
272
|
})),
|
|
263
273
|
createdAt: Date.now(),
|
|
264
|
-
ttlMs:
|
|
274
|
+
ttlMs: pendingTtlMs,
|
|
265
275
|
};
|
|
266
|
-
|
|
276
|
+
if (pendingStore) {
|
|
277
|
+
await pendingStore.save(record);
|
|
278
|
+
}
|
|
267
279
|
out.write({
|
|
268
280
|
type: "interrupt",
|
|
269
281
|
requestId,
|
|
@@ -306,9 +318,6 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
306
318
|
else {
|
|
307
319
|
out.write(chunk);
|
|
308
320
|
}
|
|
309
|
-
if (saveMemory && sessionId && chunk.type !== "status") {
|
|
310
|
-
await saveMemory(sessionId, { ...currentState });
|
|
311
|
-
}
|
|
312
321
|
if (chunk.type === "transition") {
|
|
313
322
|
loopTransitionTo = String(chunk.transitionTo || "");
|
|
314
323
|
loopTransitionPayload = chunk.payload ?? {};
|
|
@@ -338,10 +347,9 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
338
347
|
...(workflowFinalState?.data ?? currentState.data ?? {}),
|
|
339
348
|
...(transitionPayload ?? {}),
|
|
340
349
|
};
|
|
341
|
-
const
|
|
342
|
-
|
|
343
|
-
?
|
|
344
|
-
.rawInput
|
|
350
|
+
const rawInputFromPayload = transitionPayload?.rawInput;
|
|
351
|
+
const newInput = typeof rawInputFromPayload === "string"
|
|
352
|
+
? rawInputFromPayload
|
|
345
353
|
: currentState.input;
|
|
346
354
|
currentState = {
|
|
347
355
|
...currentState,
|
|
@@ -350,9 +358,6 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
350
358
|
data: mergedData,
|
|
351
359
|
ui: {},
|
|
352
360
|
};
|
|
353
|
-
if (saveMemory && sessionId) {
|
|
354
|
-
await saveMemory(sessionId, currentState);
|
|
355
|
-
}
|
|
356
361
|
currentGraph = nextGraph;
|
|
357
362
|
continue;
|
|
358
363
|
}
|
|
@@ -367,9 +372,30 @@ async function orchestrateGraphStream({ sessionId, graph, state, config, saveMem
|
|
|
367
372
|
}
|
|
368
373
|
if (workflowFinalState) {
|
|
369
374
|
if (workflowFinalState && pendingRecordToken) {
|
|
370
|
-
(
|
|
371
|
-
|
|
372
|
-
|
|
375
|
+
if (pendingStore) {
|
|
376
|
+
await pendingStore.update(pendingRecordToken, {
|
|
377
|
+
state: workflowFinalState,
|
|
378
|
+
});
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
const shouldKeepFrameworkState = Boolean(pendingRecordToken) ||
|
|
382
|
+
Boolean(workflowFinalState?.awaitingHumanInput);
|
|
383
|
+
if (!shouldKeepFrameworkState) {
|
|
384
|
+
try {
|
|
385
|
+
if (frameworkAdapter?.cleanupRun) {
|
|
386
|
+
await frameworkAdapter.cleanupRun(runId, Array.from(namespacesUsed));
|
|
387
|
+
}
|
|
388
|
+
else {
|
|
389
|
+
const cp = currentGraph.config
|
|
390
|
+
?.checkpointer;
|
|
391
|
+
if (cp?.deleteThread) {
|
|
392
|
+
await cp.deleteThread(runId);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
catch (e) {
|
|
397
|
+
console.error("[orchestrator] framework cleanup failed", e);
|
|
398
|
+
}
|
|
373
399
|
}
|
|
374
400
|
finished = true;
|
|
375
401
|
out.write({ type: "done", data: workflowFinalState });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kortyx/agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Agent composition utilities for Kortyx.",
|
|
6
6
|
"keywords": [
|
|
@@ -30,15 +30,23 @@
|
|
|
30
30
|
"README.md",
|
|
31
31
|
"CHANGELOG.md"
|
|
32
32
|
],
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsc -p tsconfig.build.json",
|
|
35
|
+
"predev": "tsc -p tsconfig.build.json",
|
|
36
|
+
"dev": "tsc --watch",
|
|
37
|
+
"lint": "biome check src",
|
|
38
|
+
"test": "pnpm -s type-check",
|
|
39
|
+
"type-check": "tsc --noEmit"
|
|
40
|
+
},
|
|
33
41
|
"dependencies": {
|
|
42
|
+
"@kortyx/core": "workspace:*",
|
|
43
|
+
"@kortyx/memory": "workspace:*",
|
|
44
|
+
"@kortyx/providers": "workspace:*",
|
|
45
|
+
"@kortyx/runtime": "workspace:*",
|
|
46
|
+
"@kortyx/stream": "workspace:*",
|
|
47
|
+
"@kortyx/utils": "workspace:*",
|
|
34
48
|
"@langchain/core": "^1.0.1",
|
|
35
|
-
"@langchain/langgraph": "^1.0.1"
|
|
36
|
-
"@kortyx/core": "0.2.3",
|
|
37
|
-
"@kortyx/memory": "0.2.3",
|
|
38
|
-
"@kortyx/runtime": "0.3.0",
|
|
39
|
-
"@kortyx/providers": "0.2.3",
|
|
40
|
-
"@kortyx/stream": "0.2.3",
|
|
41
|
-
"@kortyx/utils": "0.2.3"
|
|
49
|
+
"@langchain/langgraph": "^1.0.1"
|
|
42
50
|
},
|
|
43
51
|
"devDependencies": {
|
|
44
52
|
"turbo": "^2.5.4",
|
|
@@ -49,13 +57,5 @@
|
|
|
49
57
|
"type": "git",
|
|
50
58
|
"url": "https://github.com/kortyx-io/kortyx",
|
|
51
59
|
"directory": "packages/agent"
|
|
52
|
-
},
|
|
53
|
-
"scripts": {
|
|
54
|
-
"build": "tsc -p tsconfig.build.json",
|
|
55
|
-
"predev": "tsc -p tsconfig.build.json",
|
|
56
|
-
"dev": "tsc --watch",
|
|
57
|
-
"lint": "biome check src",
|
|
58
|
-
"test": "pnpm -s type-check",
|
|
59
|
-
"type-check": "tsc --noEmit"
|
|
60
60
|
}
|
|
61
|
-
}
|
|
61
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright [yyyy] [name of copyright owner]
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|