@almadar/agent 1.1.1 → 1.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.
- package/dist/agent/index.d.ts +2 -1
- package/dist/agent/index.js +4 -4
- package/dist/agent/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/{orbital-subagent-kKa0EqQM.d.ts → orbital-subagent-cNfTLdXQ.d.ts} +29 -28
- package/dist/tools/index.d.ts +30 -30
- package/dist/tools/index.js +4 -4
- package/dist/tools/index.js.map +1 -1
- package/package.json +7 -7
package/dist/agent/index.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { LLMProvider } from '@almadar/llm';
|
|
2
|
-
import { S as SubagentEventCallback, O as OrbitalCompleteCallback, D as DomainOrbitalCompleteCallback } from '../orbital-subagent-
|
|
2
|
+
import { S as SubagentEventCallback, O as OrbitalCompleteCallback, D as DomainOrbitalCompleteCallback } from '../orbital-subagent-cNfTLdXQ.js';
|
|
3
3
|
import { BaseCheckpointSaver } from '@langchain/langgraph-checkpoint';
|
|
4
4
|
import { P as PersistenceMode, b as FirestoreDb, d as SessionMetadata, e as SessionRecord } from '../firestore-checkpointer-DxbQ10ve.js';
|
|
5
5
|
export { Command } from '@langchain/langgraph';
|
|
6
6
|
import '@langchain/core/tools';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import '../api-types-BW_58thJ.js';
|
|
9
|
+
import '@almadar/core/types';
|
|
9
10
|
import '@langchain/core/runnables';
|
|
10
11
|
|
|
11
12
|
/**
|
package/dist/agent/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isOrbitalDefinition, isEntityReference, getTraitName } from '@almadar/core/types';
|
|
1
|
+
import { AgentDomainCategorySchema, isOrbitalDefinition, isEntityReference, getTraitName } from '@almadar/core/types';
|
|
2
2
|
import { FilesystemBackend, createDeepAgent } from 'deepagents';
|
|
3
3
|
import { MemorySaver } from '@langchain/langgraph';
|
|
4
4
|
export { Command } from '@langchain/langgraph';
|
|
@@ -1373,7 +1373,7 @@ var GenerateOrbitalDomainSchema = z.object({
|
|
|
1373
1373
|
domainContext: z.object({
|
|
1374
1374
|
request: z.string(),
|
|
1375
1375
|
requestFragment: z.string().optional(),
|
|
1376
|
-
category:
|
|
1376
|
+
category: AgentDomainCategorySchema,
|
|
1377
1377
|
vocabulary: z.record(z.string(), z.string()).optional()
|
|
1378
1378
|
}).optional(),
|
|
1379
1379
|
design: z.object({
|
|
@@ -1838,7 +1838,7 @@ var OrbitalInputSchema = z.object({
|
|
|
1838
1838
|
domainContext: z.object({
|
|
1839
1839
|
request: z.string(),
|
|
1840
1840
|
requestFragment: z.string().optional(),
|
|
1841
|
-
category:
|
|
1841
|
+
category: AgentDomainCategorySchema,
|
|
1842
1842
|
vocabulary: z.record(z.string(), z.string()).optional()
|
|
1843
1843
|
}).optional(),
|
|
1844
1844
|
design: z.object({
|
|
@@ -2415,7 +2415,7 @@ var DesignTransitionSchema = z.object({
|
|
|
2415
2415
|
type: z.string(),
|
|
2416
2416
|
values: z.array(z.string()).optional()
|
|
2417
2417
|
})).describe("Entity fields with types and optional enum values"),
|
|
2418
|
-
domainCategory:
|
|
2418
|
+
domainCategory: AgentDomainCategorySchema.optional().describe("Domain category for pattern selection"),
|
|
2419
2419
|
vocabulary: z.record(z.string(), z.string()).optional().describe('Domain vocabulary mapping (e.g., { "create": "Place Order", "item": "Order" })'),
|
|
2420
2420
|
designStyle: z.enum(["minimal", "modern", "playful", "data-driven", "immersive"]).optional().describe("Visual style hint"),
|
|
2421
2421
|
flowPattern: z.enum(["hub-spoke", "master-detail", "crud-cycle", "linear", "role-based"]).optional().describe("Application flow pattern"),
|