@aria-framework/ai 0.14.0 → 0.14.1
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 +1 -1
- package/providerStore.js +7 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aria-framework/ai",
|
|
3
3
|
"description": "Aria App Framework — AI module. A dependency-injected model seam (createAiClient) over several providers (LM Studio / OpenAI-compatible / Anthropic), with a fact-preservation guard, generic Polish and Generate writing engines, and a browser polish widget. Prompts and config stay in the consuming app.",
|
|
4
|
-
"version": "0.14.
|
|
4
|
+
"version": "0.14.1",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
7
7
|
"publishConfig": {
|
package/providerStore.js
CHANGED
|
@@ -219,8 +219,14 @@ function schemaFor(dialect) {
|
|
|
219
219
|
-- can report a verdict rather than a number to be remembered. 0 means no expectation was set,
|
|
220
220
|
-- which is not the same as expecting it to be slow.
|
|
221
221
|
min_tokens_per_sec INTEGER NOT NULL DEFAULT 0,
|
|
222
|
+
-- WHICH ENGINE ON WHICH SUPERVISED STACK, for kind 'lmx'. Identity is the PAIR: engine names are
|
|
223
|
+
-- stable but collide across deployments, so a name alone would let a mis-pointed status URL send
|
|
224
|
+
-- work to another stack's engine of the same name. An lmx row stores no base_url at all — the
|
|
225
|
+
-- address is discovered from the supervisor on every call.
|
|
226
|
+
lmx_instance TEXT,
|
|
227
|
+
lmx_engine TEXT,
|
|
222
228
|
created_at TEXT NOT NULL DEFAULT (${t.now()})
|
|
223
229
|
`;
|
|
224
230
|
}
|
|
225
231
|
|
|
226
|
-
module.exports = { createProviderStore, schemaFor, _assertId: assertId };
|
|
232
|
+
module.exports = { createProviderStore, schemaFor, _assertId: assertId, _fields: FIELDS };
|