mirror of
https://github.com/sortedcord/omnia.git
synced 2026-07-22 20:12:48 +05:30
- Added "@omnia/intent": "workspace:*" dependency to package.json. - Referenced ../intent in the project references of tsconfig.json. - Updated validate in llm-validator.ts to accept intent:Intent instead of actorId and actionIntent strings - Promoted the LLM prompt's action details block to include the structured fields of the intent (type , description , originalText , targetIds ), passing this context to the validator.) - Updated the IDeltaGenerator interface and TimeDeltaGenerator 's generate signature in delta.ts to accept intent: Intent . - Refined the LLM prompt's action details block in TimeDeltaGenerator to utilize the structured structured Intent object. - Updated all validation and execution mock calls in architect.test.ts to construct and pass valid Intent objects.
16 lines
289 B
JSON
16 lines
289 B
JSON
{
|
|
"name": "@omnia/architect",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@omnia/core": "workspace:*",
|
|
"@omnia/llm": "workspace:*",
|
|
"@omnia/intent": "workspace:*",
|
|
"zod": "^4.4.3"
|
|
}
|
|
}
|