@dbx-tools/appkit-mastra 0.1.5 → 0.1.10
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 +394 -0
- package/index.ts +46 -37
- package/package.json +58 -47
- package/src/agents.ts +233 -62
- package/src/chart.ts +555 -285
- package/src/config.ts +282 -18
- package/src/filesystems.ts +1090 -0
- package/src/genie.ts +1004 -601
- package/src/history.ts +178 -79
- package/src/mcp.ts +105 -0
- package/src/memory.ts +129 -74
- package/src/mlflow.ts +149 -0
- package/src/model.ts +80 -408
- package/src/observability.ts +144 -0
- package/src/pagination.ts +34 -0
- package/src/plugin.ts +573 -59
- package/src/processors.ts +168 -0
- package/src/rest.ts +67 -0
- package/src/server.ts +243 -45
- package/src/serving-sanitize.ts +167 -0
- package/src/serving.ts +27 -224
- package/src/statement.ts +89 -0
- package/src/storage-schema.ts +41 -0
- package/src/summarize.ts +176 -0
- package/src/threads.ts +338 -0
- package/src/workspaces.ts +346 -0
- package/src/writer.ts +44 -0
- package/tsconfig.json +41 -0
- package/dist/index.d.ts +0 -19
- package/dist/index.js +0 -19
- package/dist/src/agents.d.ts +0 -306
- package/dist/src/agents.js +0 -393
- package/dist/src/chart.d.ts +0 -104
- package/dist/src/chart.js +0 -375
- package/dist/src/config.d.ts +0 -170
- package/dist/src/config.js +0 -12
- package/dist/src/genie.d.ts +0 -116
- package/dist/src/genie.js +0 -594
- package/dist/src/history.d.ts +0 -67
- package/dist/src/history.js +0 -158
- package/dist/src/memory.d.ts +0 -79
- package/dist/src/memory.js +0 -197
- package/dist/src/model.d.ts +0 -159
- package/dist/src/model.js +0 -423
- package/dist/src/plugin.d.ts +0 -130
- package/dist/src/plugin.js +0 -255
- package/dist/src/render-chart-route.d.ts +0 -33
- package/dist/src/render-chart-route.js +0 -120
- package/dist/src/server.d.ts +0 -46
- package/dist/src/server.js +0 -113
- package/dist/src/serving.d.ts +0 -156
- package/dist/src/serving.js +0 -214
- package/src/render-chart-route.ts +0 -141
package/src/memory.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* with two independent knobs:
|
|
6
6
|
*
|
|
7
7
|
* - **Storage** (threads / messages via `PostgresStore`): defaults to
|
|
8
|
-
* **per-agent** namespacing via
|
|
8
|
+
* **per-agent** namespacing via {@link agentStorageSchemaName} so
|
|
9
9
|
* conversation history stays isolated between agents in the same
|
|
10
10
|
* database. `PostgresStore` auto-creates the schema with
|
|
11
11
|
* `CREATE SCHEMA IF NOT EXISTS` on init.
|
|
@@ -14,29 +14,61 @@
|
|
|
14
14
|
* index is almost always what users want; opt into per-agent recall
|
|
15
15
|
* by passing a {@link MastraMemoryConfigOverride} on the agent.
|
|
16
16
|
*
|
|
17
|
+
* Additionally, {@link MemoryBuilder.instanceStorage} returns a
|
|
18
|
+
* **Mastra-instance-level** `PostgresStore` (schema `mastra_instance`)
|
|
19
|
+
* used for workflow snapshots - the persistence layer
|
|
20
|
+
* `agent.resumeStream()` reads from when waking a suspended
|
|
21
|
+
* `requireApproval` tool call. Per-agent stores are not enough for
|
|
22
|
+
* this: workflow runs are scoped to the Mastra instance, not an
|
|
23
|
+
* individual agent's `Memory`.
|
|
24
|
+
*
|
|
17
25
|
* Plugin-level `config.storage` / `config.memory` act as the baseline
|
|
18
26
|
* (auto-defaulted to `true` in `plugin.ts` when the `lakebase` plugin
|
|
19
27
|
* is registered); per-agent settings cascade on top of that.
|
|
20
28
|
*/
|
|
21
29
|
|
|
22
|
-
import {
|
|
23
|
-
import { pluginUtils } from "@dbx-tools/appkit-shared";
|
|
30
|
+
import { getUsernameWithApiLookup } from "@databricks/appkit";
|
|
24
31
|
import { fastembed } from "@mastra/fastembed";
|
|
25
32
|
import { Memory } from "@mastra/memory";
|
|
26
33
|
import { PgVector, PostgresStore } from "@mastra/pg";
|
|
27
34
|
import { randomUUID } from "node:crypto";
|
|
28
|
-
import
|
|
35
|
+
import { Pool, type PoolConfig } from "pg";
|
|
36
|
+
|
|
37
|
+
import type { MastraAgentDefinition, MastraMemoryConfigOverride } from "./agents";
|
|
38
|
+
import type { MastraPluginConfig } from "./config";
|
|
39
|
+
import { agentStorageSchemaName } from "./storage-schema";
|
|
40
|
+
import { summaryModel, TITLE_INSTRUCTIONS } from "./summarize";
|
|
41
|
+
import { log } from "@dbx-tools/shared-core";
|
|
29
42
|
|
|
30
|
-
|
|
31
|
-
MastraAgentDefinition,
|
|
32
|
-
MastraMemoryConfigOverride,
|
|
33
|
-
} from "./agents.js";
|
|
34
|
-
import type { MastraPluginConfig } from "./config.js";
|
|
43
|
+
const logger = log.logger("mastra/memory");
|
|
35
44
|
|
|
36
|
-
/**
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
45
|
+
/**
|
|
46
|
+
* Build a dedicated **service-principal** Lakebase pool for Mastra
|
|
47
|
+
* memory from the lakebase plugin's resolved SP pg config.
|
|
48
|
+
*
|
|
49
|
+
* The plugin's `exports().pool` is a `RoutingPool` that switches to
|
|
50
|
+
* the per-user (OBO) pool whenever a query runs inside an `asUser`
|
|
51
|
+
* scope - exactly the context the mastra plugin establishes around
|
|
52
|
+
* every chat turn. Memory (threads / messages + semantic recall) must
|
|
53
|
+
* instead always act as the app service principal: it owns the
|
|
54
|
+
* auto-created `mastra_*` schemas (a per-user role usually can't
|
|
55
|
+
* `CREATE SCHEMA`) and is shared across users, so it cannot inherit a
|
|
56
|
+
* request's OBO identity.
|
|
57
|
+
*
|
|
58
|
+
* `pgConfig` must be the plugin's `exports().getPgConfig()` evaluated
|
|
59
|
+
* **outside** any `asUser` scope (i.e. during setup), so it carries
|
|
60
|
+
* the SP connection target, OAuth token-refresh `password` callback,
|
|
61
|
+
* and any `lakebase({ pool })` tuning overrides - all of which this
|
|
62
|
+
* pool inherits. See the call site in `plugin.ts`.
|
|
63
|
+
*/
|
|
64
|
+
export async function createServicePrincipalPool(pgConfig: PoolConfig): Promise<Pool> {
|
|
65
|
+
// `getPgConfig()` resolves the SP username synchronously from
|
|
66
|
+
// `PGUSER` / `DATABRICKS_CLIENT_ID`; fall back to the async API
|
|
67
|
+
// lookup (e.g. local dev authenticating via PAT) so the pool always
|
|
68
|
+
// has an identity to connect with.
|
|
69
|
+
const user = pgConfig.user ?? (await getUsernameWithApiLookup());
|
|
70
|
+
return new Pool({ ...pgConfig, user });
|
|
71
|
+
}
|
|
40
72
|
|
|
41
73
|
/** Effective per-knob setting after the plugin/agent cascade. */
|
|
42
74
|
type StorageSetting = MastraAgentDefinition["storage"];
|
|
@@ -44,59 +76,69 @@ type MemorySetting = MastraAgentDefinition["memory"];
|
|
|
44
76
|
|
|
45
77
|
/**
|
|
46
78
|
* True when any plugin-level or per-agent setting could need the
|
|
47
|
-
* Lakebase pool. Used by `plugin.ts` to gate
|
|
48
|
-
*
|
|
49
|
-
*
|
|
79
|
+
* Lakebase pool. Used by `plugin.ts` to gate creation of the
|
|
80
|
+
* service-principal pool and the {@link MemoryBuilder} that consumes
|
|
81
|
+
* it; when false neither is built.
|
|
50
82
|
*/
|
|
51
83
|
export function needsLakebase(config: MastraPluginConfig): boolean {
|
|
52
84
|
if (settingNeedsSharedPool(config.storage)) return true;
|
|
53
85
|
if (settingNeedsSharedPool(config.memory)) return true;
|
|
54
86
|
const defs = collectAgentDefinitions(config);
|
|
55
|
-
return defs.some(
|
|
56
|
-
(d) =>
|
|
57
|
-
settingNeedsSharedPool(d.storage) || settingNeedsSharedPool(d.memory),
|
|
58
|
-
);
|
|
87
|
+
return defs.some((d) => settingNeedsSharedPool(d.storage) || settingNeedsSharedPool(d.memory));
|
|
59
88
|
}
|
|
60
89
|
|
|
61
90
|
/**
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
65
|
-
*
|
|
66
|
-
*/
|
|
67
|
-
export function resolveLakebasePool(
|
|
68
|
-
context: pluginUtils.PluginContextLike | undefined,
|
|
69
|
-
caller: MastraPluginConfig,
|
|
70
|
-
): LakebasePool {
|
|
71
|
-
return pluginUtils.require(context, lakebase, caller).exports().pool;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* Construct a per-agent {@link Memory} factory. Caches the shared
|
|
76
|
-
* `PgVector` singleton (built on first need) and the lazily-resolved
|
|
77
|
-
* Lakebase pool so each agent build is O(1) after the first.
|
|
91
|
+
* Construct a per-agent {@link Memory} factory bound to the supplied
|
|
92
|
+
* service-principal pool (see {@link createServicePrincipalPool}).
|
|
93
|
+
* Caches the shared `PgVector` singleton (built on first need) so each
|
|
94
|
+
* agent build is O(1) after the first.
|
|
78
95
|
*/
|
|
79
96
|
export function createMemoryBuilder(
|
|
80
97
|
config: MastraPluginConfig,
|
|
81
|
-
|
|
98
|
+
servicePrincipalPool: Pool,
|
|
82
99
|
): MemoryBuilder {
|
|
83
|
-
return new MemoryBuilder(config,
|
|
100
|
+
return new MemoryBuilder(config, servicePrincipalPool);
|
|
84
101
|
}
|
|
85
102
|
|
|
86
103
|
/**
|
|
87
|
-
* Builds one `Memory` per agent
|
|
88
|
-
*
|
|
89
|
-
* registering N agents stays cheap.
|
|
104
|
+
* Builds one `Memory` per agent against a shared service-principal
|
|
105
|
+
* Lakebase pool. Per-instance state keeps the shared `PgVector` alive
|
|
106
|
+
* across calls so registering N agents stays cheap.
|
|
90
107
|
*/
|
|
91
108
|
export class MemoryBuilder {
|
|
92
109
|
private sharedVector: PgVector | undefined;
|
|
93
|
-
private pool: LakebasePool | undefined;
|
|
94
110
|
|
|
95
111
|
constructor(
|
|
96
112
|
private readonly config: MastraPluginConfig,
|
|
97
|
-
private readonly
|
|
113
|
+
private readonly servicePrincipalPool: Pool,
|
|
98
114
|
) {}
|
|
99
115
|
|
|
116
|
+
/**
|
|
117
|
+
* Build the Mastra-instance-level storage used for workflow
|
|
118
|
+
* snapshots. Returns `undefined` when plugin-level `storage` is
|
|
119
|
+
* disabled, in which case `agent.resumeStream()` (and therefore
|
|
120
|
+
* the `requireApproval` flow) will not be available.
|
|
121
|
+
*
|
|
122
|
+
* The store lives in a dedicated `mastra_instance` schema so it
|
|
123
|
+
* never collides with per-agent {@link agentStorageSchemaName} namespaces.
|
|
124
|
+
* Workflow snapshots are not per-agent state; they belong to the
|
|
125
|
+
* `Mastra` instance that owns the workflow execution.
|
|
126
|
+
*/
|
|
127
|
+
instanceStorage(): PostgresStore | undefined {
|
|
128
|
+
const setting = this.config.storage;
|
|
129
|
+
if (!setting) return undefined;
|
|
130
|
+
if (typeof setting === "object") {
|
|
131
|
+
return new PostgresStore(
|
|
132
|
+
withId(setting, "mastra-store__instance") as ConstructorParameters<typeof PostgresStore>[0],
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
return new PostgresStore({
|
|
136
|
+
id: "mastra-store__instance",
|
|
137
|
+
schemaName: "mastra_instance",
|
|
138
|
+
pool: this.servicePrincipalPool,
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
|
|
100
142
|
/**
|
|
101
143
|
* Build a `Memory` for `agentId` after the plugin/agent cascade.
|
|
102
144
|
* Returns `undefined` when the agent has neither storage nor a
|
|
@@ -109,39 +151,57 @@ export class MemoryBuilder {
|
|
|
109
151
|
|
|
110
152
|
const storage = this.buildStorage(agentId, storageSetting);
|
|
111
153
|
const vector = this.buildVector(memorySetting);
|
|
112
|
-
if (!storage && !vector)
|
|
154
|
+
if (!storage && !vector) {
|
|
155
|
+
logger.debug("agent:stateless", { agentId });
|
|
156
|
+
return undefined;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
logger.debug("agent:configured", {
|
|
160
|
+
agentId,
|
|
161
|
+
storage: storage !== undefined,
|
|
162
|
+
vector: vector !== undefined,
|
|
163
|
+
vectorMode:
|
|
164
|
+
vector === undefined ? "off" : typeof memorySetting === "object" ? "dedicated" : "shared",
|
|
165
|
+
});
|
|
113
166
|
|
|
114
167
|
return new Memory({
|
|
115
168
|
...(storage ? { storage } : {}),
|
|
116
169
|
...(vector ? { vector, embedder: fastembed } : {}),
|
|
117
170
|
options: {
|
|
118
171
|
lastMessages: 10,
|
|
119
|
-
...(vector
|
|
120
|
-
|
|
172
|
+
...(vector ? { semanticRecall: { topK: 3, messageRange: 2 } } : {}),
|
|
173
|
+
// Auto-name each thread from its opening turn so the
|
|
174
|
+
// conversation list the UI renders shows meaningful titles
|
|
175
|
+
// instead of raw ids. Titling runs on the small / fast chat
|
|
176
|
+
// tier (see `summarize.ts`) rather than the agent's primary
|
|
177
|
+
// model, so naming a thread never spends the heavyweight model.
|
|
178
|
+
// Only meaningful when storage is on; harmless otherwise.
|
|
179
|
+
...(storage
|
|
180
|
+
? {
|
|
181
|
+
generateTitle: {
|
|
182
|
+
model: summaryModel(this.config),
|
|
183
|
+
instructions: TITLE_INSTRUCTIONS,
|
|
184
|
+
},
|
|
185
|
+
}
|
|
121
186
|
: {}),
|
|
122
187
|
},
|
|
123
188
|
});
|
|
124
189
|
}
|
|
125
190
|
|
|
126
|
-
private buildStorage(
|
|
127
|
-
agentId: string,
|
|
128
|
-
setting: StorageSetting,
|
|
129
|
-
): PostgresStore | undefined {
|
|
191
|
+
private buildStorage(agentId: string, setting: StorageSetting): PostgresStore | undefined {
|
|
130
192
|
if (!setting) return undefined;
|
|
131
193
|
if (typeof setting === "boolean") {
|
|
132
194
|
return new PostgresStore({
|
|
133
195
|
id: `mastra-store__${agentId}`,
|
|
134
|
-
schemaName:
|
|
135
|
-
pool: this.
|
|
196
|
+
schemaName: agentStorageSchemaName(agentId),
|
|
197
|
+
pool: this.servicePrincipalPool,
|
|
136
198
|
});
|
|
137
199
|
}
|
|
138
200
|
// Cast: `withId` guarantees `id` is set, but the distributive
|
|
139
201
|
// Omit + `id?: string` shape doesn't structurally narrow to the
|
|
140
202
|
// discriminated union members. Runtime shape is identical.
|
|
141
203
|
return new PostgresStore(
|
|
142
|
-
withId(setting, `mastra-store__${agentId}`) as ConstructorParameters<
|
|
143
|
-
typeof PostgresStore
|
|
144
|
-
>[0],
|
|
204
|
+
withId(setting, `mastra-store__${agentId}`) as ConstructorParameters<typeof PostgresStore>[0],
|
|
145
205
|
);
|
|
146
206
|
}
|
|
147
207
|
|
|
@@ -162,17 +222,10 @@ export class MemoryBuilder {
|
|
|
162
222
|
|
|
163
223
|
private getSharedVector(): PgVector {
|
|
164
224
|
if (!this.sharedVector) {
|
|
165
|
-
this.sharedVector = buildSharedPgVector(this.
|
|
225
|
+
this.sharedVector = buildSharedPgVector(this.servicePrincipalPool);
|
|
166
226
|
}
|
|
167
227
|
return this.sharedVector;
|
|
168
228
|
}
|
|
169
|
-
|
|
170
|
-
private requirePool(): LakebasePool {
|
|
171
|
-
if (!this.pool) {
|
|
172
|
-
this.pool = resolveLakebasePool(this.context, this.config);
|
|
173
|
-
}
|
|
174
|
-
return this.pool;
|
|
175
|
-
}
|
|
176
229
|
}
|
|
177
230
|
|
|
178
231
|
/**
|
|
@@ -195,9 +248,17 @@ export class MemoryBuilder {
|
|
|
195
248
|
* the lakebase pool from then on. The placeholder pool is `.end()`'d
|
|
196
249
|
* so its socket book-keeping is released.
|
|
197
250
|
*/
|
|
198
|
-
function buildSharedPgVector(pool:
|
|
251
|
+
function buildSharedPgVector(pool: Pool): PgVector {
|
|
199
252
|
const vector = new PgVector({
|
|
200
253
|
id: `pg${randomUUID()}`,
|
|
254
|
+
// Keep the recall index out of `public`: on a Lakebase database the app
|
|
255
|
+
// service principal has no CREATE on `public` (PG15+ locks it down), so a
|
|
256
|
+
// default-schema PgVector fails on CREATE INDEX with "permission denied for
|
|
257
|
+
// schema public". PgVector runs CREATE SCHEMA IF NOT EXISTS for a named
|
|
258
|
+
// schema, so the SP creates and owns `mastra_instance` (the same
|
|
259
|
+
// instance-level schema the workflow-snapshot store uses) and the index
|
|
260
|
+
// lands there. Table names don't collide with the storage tables.
|
|
261
|
+
schemaName: "mastra_instance",
|
|
201
262
|
host: "-1",
|
|
202
263
|
port: -1,
|
|
203
264
|
database: "_",
|
|
@@ -205,7 +266,7 @@ function buildSharedPgVector(pool: LakebasePool): PgVector {
|
|
|
205
266
|
password: "_",
|
|
206
267
|
});
|
|
207
268
|
const placeholder = vector.pool;
|
|
208
|
-
vector.pool = pool
|
|
269
|
+
vector.pool = pool;
|
|
209
270
|
void placeholder.end().catch(() => undefined);
|
|
210
271
|
return vector;
|
|
211
272
|
}
|
|
@@ -213,23 +274,17 @@ function buildSharedPgVector(pool: LakebasePool): PgVector {
|
|
|
213
274
|
/** Per-agent dedicated `PgVector` (rare; opt-in via object override). */
|
|
214
275
|
function buildPgVector(setting: MastraMemoryConfigOverride): PgVector {
|
|
215
276
|
return new PgVector(
|
|
216
|
-
withId(setting, `pg-vector__${randomUUID()}`) as ConstructorParameters<
|
|
217
|
-
typeof PgVector
|
|
218
|
-
>[0],
|
|
277
|
+
withId(setting, `pg-vector__${randomUUID()}`) as ConstructorParameters<typeof PgVector>[0],
|
|
219
278
|
);
|
|
220
279
|
}
|
|
221
280
|
|
|
222
281
|
/** True when this setting requires the shared Lakebase pool. */
|
|
223
|
-
function settingNeedsSharedPool(
|
|
224
|
-
setting: StorageSetting | MemorySetting | undefined,
|
|
225
|
-
): boolean {
|
|
282
|
+
function settingNeedsSharedPool(setting: StorageSetting | MemorySetting | undefined): boolean {
|
|
226
283
|
return setting === true;
|
|
227
284
|
}
|
|
228
285
|
|
|
229
286
|
/** Walk the three shapes of `config.agents` into a flat list. */
|
|
230
|
-
function collectAgentDefinitions(
|
|
231
|
-
config: MastraPluginConfig,
|
|
232
|
-
): MastraAgentDefinition[] {
|
|
287
|
+
function collectAgentDefinitions(config: MastraPluginConfig): MastraAgentDefinition[] {
|
|
233
288
|
const agents = config.agents;
|
|
234
289
|
if (!agents) return [];
|
|
235
290
|
if (Array.isArray(agents)) return agents;
|
package/src/mlflow.ts
ADDED
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* MLflow user-feedback logging: detect whether MLflow tracing is wired
|
|
3
|
+
* for this deployment, and log a thumbs / comment as a trace
|
|
4
|
+
* *assessment* via the Databricks MLflow REST API.
|
|
5
|
+
*
|
|
6
|
+
* Feedback attaches to a trace, and the plugin's spans reach MLflow
|
|
7
|
+
* through the same OTel pipeline as every other AppKit span (see
|
|
8
|
+
* `observability.ts`). MLflow derives its trace id from the OpenTelemetry
|
|
9
|
+
* trace id (`tr-<hex(otelTraceId)>`), so the server stamps the active
|
|
10
|
+
* trace id on each turn's response and the client sends it back here.
|
|
11
|
+
*
|
|
12
|
+
* There is no MLflow JS SDK, so this posts to the assessments REST
|
|
13
|
+
* endpoint directly using the OBO-scoped workspace client (the feedback
|
|
14
|
+
* is thus attributed to the signed-in user). Trace export is
|
|
15
|
+
* asynchronous, so the just-finished trace may not exist in MLflow yet
|
|
16
|
+
* when the user reacts; the log call retries briefly on "not found"
|
|
17
|
+
* before giving up softly.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
import { feedback } from "@dbx-tools/shared-mastra";
|
|
21
|
+
import { databricksFetch, readResponseJson, readResponseText } from "./rest";
|
|
22
|
+
import { async, error, log } from "@dbx-tools/shared-core";
|
|
23
|
+
import { appkit } from "@dbx-tools/appkit";
|
|
24
|
+
|
|
25
|
+
const logger = log.logger("mastra/mlflow");
|
|
26
|
+
|
|
27
|
+
/** Workspace client carried on an AppKit execution context. */
|
|
28
|
+
type WorkspaceClient = appkit.WorkspaceClientLike;
|
|
29
|
+
|
|
30
|
+
/** Assessments REST path for a trace. `3.0` is the current MLflow API version. */
|
|
31
|
+
const assessmentsPath = (traceId: string): string =>
|
|
32
|
+
`/api/3.0/mlflow/traces/${encodeURIComponent(traceId)}/assessments`;
|
|
33
|
+
|
|
34
|
+
/** Number of times to retry a "trace not found" response before giving up. */
|
|
35
|
+
const NOT_FOUND_RETRIES = 3;
|
|
36
|
+
/** Base backoff between "trace not found" retries, in ms (grows linearly). */
|
|
37
|
+
const NOT_FOUND_BACKOFF_MS = 1200;
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Whether MLflow feedback logging is available for this deployment.
|
|
41
|
+
*
|
|
42
|
+
* Enabled when an OTLP exporter endpoint is configured (traces are
|
|
43
|
+
* actually shipped somewhere) AND an MLflow experiment is named - the
|
|
44
|
+
* two signals that the OTLP backend is MLflow and traces will
|
|
45
|
+
* materialize there. Both are standard env vars, so no plugin config is
|
|
46
|
+
* required; a deployment opts in simply by wiring MLflow tracing.
|
|
47
|
+
*/
|
|
48
|
+
export function mlflowEnabled(): boolean {
|
|
49
|
+
const hasExporter = Boolean(
|
|
50
|
+
process.env.OTEL_EXPORTER_OTLP_ENDPOINT?.trim() ||
|
|
51
|
+
process.env.OTEL_EXPORTER_OTLP_TRACES_ENDPOINT?.trim(),
|
|
52
|
+
);
|
|
53
|
+
const hasExperiment = Boolean(
|
|
54
|
+
process.env.MLFLOW_EXPERIMENT_ID?.trim() || process.env.MLFLOW_EXPERIMENT_NAME?.trim(),
|
|
55
|
+
);
|
|
56
|
+
return hasExporter && hasExperiment;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Resolve whether user feedback is enabled from the plugin's optional
|
|
61
|
+
* `config.feedback` override: the explicit boolean wins, otherwise fall
|
|
62
|
+
* back to auto-detecting MLflow tracing ({@link mlflowEnabled}). Shared
|
|
63
|
+
* by the plugin's client-config gate and the server's trace-id header so
|
|
64
|
+
* the two never disagree.
|
|
65
|
+
*/
|
|
66
|
+
export function resolveFeedbackEnabled(explicit: boolean | undefined): boolean {
|
|
67
|
+
return explicit ?? mlflowEnabled();
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/** Parameters for {@link logFeedback}. */
|
|
71
|
+
export interface LogFeedbackParams {
|
|
72
|
+
/** MLflow trace id the assessment attaches to (`tr-<hex>`). */
|
|
73
|
+
traceId: string;
|
|
74
|
+
/** Assessment name; defaults per whether a value or a comment is sent. */
|
|
75
|
+
name?: string;
|
|
76
|
+
/** Thumbs / rating / label value. Omit for a comment-only submission. */
|
|
77
|
+
value?: boolean | number | string;
|
|
78
|
+
/** Freeform comment: the rationale alongside a value, or the value itself when none. */
|
|
79
|
+
comment?: string;
|
|
80
|
+
/** Identity the feedback is attributed to (user email / id). */
|
|
81
|
+
sourceId?: string;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Log a HUMAN feedback assessment to a trace. Returns the created
|
|
86
|
+
* assessment id on success, or `undefined` when the trace can't be
|
|
87
|
+
* found (even after retrying for export lag) or the request otherwise
|
|
88
|
+
* fails - callers surface that as a soft "not recorded" rather than an
|
|
89
|
+
* error, keeping the chat usable.
|
|
90
|
+
*/
|
|
91
|
+
export async function logFeedback(
|
|
92
|
+
client: WorkspaceClient,
|
|
93
|
+
params: LogFeedbackParams,
|
|
94
|
+
): Promise<string | undefined> {
|
|
95
|
+
// A comment with no thumbs value is logged as text feedback; a value
|
|
96
|
+
// (with an optional comment as the rationale) is the thumbs path.
|
|
97
|
+
const hasValue = params.value !== undefined;
|
|
98
|
+
const name =
|
|
99
|
+
params.name?.trim() ||
|
|
100
|
+
(hasValue ? feedback.DEFAULT_FEEDBACK_NAME : feedback.DEFAULT_COMMENT_NAME);
|
|
101
|
+
const value = hasValue ? params.value : params.comment;
|
|
102
|
+
const assessment: Record<string, unknown> = {
|
|
103
|
+
trace_id: params.traceId,
|
|
104
|
+
assessment_name: name,
|
|
105
|
+
source: {
|
|
106
|
+
source_type: "HUMAN",
|
|
107
|
+
source_id: params.sourceId?.trim() || "user",
|
|
108
|
+
},
|
|
109
|
+
feedback: { value },
|
|
110
|
+
...(hasValue && params.comment?.trim() ? { rationale: params.comment } : {}),
|
|
111
|
+
};
|
|
112
|
+
const body = { assessment };
|
|
113
|
+
|
|
114
|
+
for (let attempt = 0; attempt <= NOT_FOUND_RETRIES; attempt++) {
|
|
115
|
+
let res: Response;
|
|
116
|
+
try {
|
|
117
|
+
res = await databricksFetch(client, assessmentsPath(params.traceId), {
|
|
118
|
+
method: "POST",
|
|
119
|
+
body,
|
|
120
|
+
});
|
|
121
|
+
} catch (err) {
|
|
122
|
+
logger.warn("feedback request failed", {
|
|
123
|
+
traceId: params.traceId,
|
|
124
|
+
error: error.errorMessage(err),
|
|
125
|
+
});
|
|
126
|
+
return undefined;
|
|
127
|
+
}
|
|
128
|
+
if (res.ok) {
|
|
129
|
+
const parsed = await readResponseJson(res);
|
|
130
|
+
const assessmentId =
|
|
131
|
+
(parsed as { assessment?: { assessment_id?: unknown } })?.assessment?.assessment_id ??
|
|
132
|
+
(parsed as { assessment_id?: unknown })?.assessment_id;
|
|
133
|
+
return typeof assessmentId === "string" ? assessmentId : "";
|
|
134
|
+
}
|
|
135
|
+
// Trace export is async; a fresh trace may not exist yet. Retry a
|
|
136
|
+
// few times with a short backoff before giving up softly.
|
|
137
|
+
if (res.status === 404 && attempt < NOT_FOUND_RETRIES) {
|
|
138
|
+
await async.sleep(NOT_FOUND_BACKOFF_MS * (attempt + 1));
|
|
139
|
+
continue;
|
|
140
|
+
}
|
|
141
|
+
logger.warn("feedback not recorded", {
|
|
142
|
+
traceId: params.traceId,
|
|
143
|
+
status: res.status,
|
|
144
|
+
body: await readResponseText(res),
|
|
145
|
+
});
|
|
146
|
+
return undefined;
|
|
147
|
+
}
|
|
148
|
+
return undefined;
|
|
149
|
+
}
|