@konneal/engine 0.1.2 → 0.1.3
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { setProfile } from "../../worker_public/src/profile.ts";
|
|
1
2
|
export interface Env {
|
|
2
3
|
RAG_BASE: string;
|
|
3
4
|
/** the deployment's shared D1 (API keys + the derived documents
|
|
@@ -8,3 +9,4 @@ declare const _default: {
|
|
|
8
9
|
fetch(req: Request, env: Env): Promise<Response>;
|
|
9
10
|
};
|
|
10
11
|
export default _default;
|
|
12
|
+
export { setProfile };
|
|
@@ -3,7 +3,8 @@ import {
|
|
|
3
3
|
} from "../../chunk-ROF3Q7UC.js";
|
|
4
4
|
import "../../chunk-OCNLV7Q7.js";
|
|
5
5
|
import {
|
|
6
|
-
P
|
|
6
|
+
P,
|
|
7
|
+
setProfile
|
|
7
8
|
} from "../../chunk-35ODH64W.js";
|
|
8
9
|
|
|
9
10
|
// workers/worker_mcp/src/index.ts
|
|
@@ -149,5 +150,6 @@ var src_default = {
|
|
|
149
150
|
}
|
|
150
151
|
};
|
|
151
152
|
export {
|
|
152
|
-
src_default as default
|
|
153
|
+
src_default as default,
|
|
154
|
+
setProfile
|
|
153
155
|
};
|
package/package.json
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@astrojs/markdown-satteri": "^0.4.1",
|
|
32
32
|
"@astrojs/mdx": "^4.3.14"
|
|
33
33
|
},
|
|
34
|
-
"version": "0.1.
|
|
34
|
+
"version": "0.1.3",
|
|
35
35
|
"description": "The Konneal engine: the publisher-agnostic build pipeline and API plane for standards intelligence (retrieval, answer contract, verdicts, evaluation).",
|
|
36
36
|
"license": "BSD-3-Clause",
|
|
37
37
|
"type": "module",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
// server — each request is answered in one JSON response; no sessions.
|
|
15
15
|
// https://modelcontextprotocol.io spec (2025-06 streamable HTTP).
|
|
16
16
|
|
|
17
|
-
import { P } from "../../worker_public/src/profile.ts";
|
|
17
|
+
import { P, setProfile } from "../../worker_public/src/profile.ts";
|
|
18
18
|
import { authenticate } from "../../worker_public/src/lib/http";
|
|
19
19
|
|
|
20
20
|
export interface Env {
|
|
@@ -186,3 +186,4 @@ export default {
|
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
};
|
|
189
|
+
export { setProfile };
|