mirror of
https://github.com/sortedcord/omnia.git
synced 2026-07-22 03:52:48 +05:30
feat(architect): Add modifier field to intent decoder, refine prompt
This commit is contained in:
@@ -65,6 +65,7 @@ describe("Actor Agent + Monologue Intent Integration (Tier 2)", () => {
|
||||
selfDescription: "You internally reflect that Bob has not noticed you.",
|
||||
actorId: "alice",
|
||||
targetIds: [],
|
||||
modifiers: [],
|
||||
},
|
||||
{
|
||||
type: "dialogue",
|
||||
@@ -73,6 +74,7 @@ describe("Actor Agent + Monologue Intent Integration (Tier 2)", () => {
|
||||
selfDescription: "You softly call out to Bob.",
|
||||
actorId: "alice",
|
||||
targetIds: ["bob"],
|
||||
modifiers: [],
|
||||
},
|
||||
{
|
||||
type: "action",
|
||||
@@ -81,6 +83,7 @@ describe("Actor Agent + Monologue Intent Integration (Tier 2)", () => {
|
||||
selfDescription: "You reach for the ledger on the table.",
|
||||
actorId: "alice",
|
||||
targetIds: [],
|
||||
modifiers: [],
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
@@ -36,6 +36,7 @@ describe("Omnia Integration Tests (Tier 2)", () => {
|
||||
selfDescription: "You whisper to Bob to cover you.",
|
||||
actorId: "alice",
|
||||
targetIds: ["bob"],
|
||||
modifiers: [],
|
||||
},
|
||||
{
|
||||
type: "action",
|
||||
@@ -44,6 +45,7 @@ describe("Omnia Integration Tests (Tier 2)", () => {
|
||||
selfDescription: "You creep to the door and pull the handle.",
|
||||
actorId: "alice",
|
||||
targetIds: [],
|
||||
modifiers: [],
|
||||
},
|
||||
],
|
||||
};
|
||||
@@ -113,6 +115,7 @@ describe("Omnia Integration Tests (Tier 2)", () => {
|
||||
selfDescription: "You attempt to pick the lock with a hairpin.",
|
||||
actorId: "alice",
|
||||
targetIds: [],
|
||||
modifiers: [],
|
||||
};
|
||||
|
||||
const intent2 = {
|
||||
@@ -122,6 +125,7 @@ describe("Omnia Integration Tests (Tier 2)", () => {
|
||||
selfDescription: "You mutter to yourself.",
|
||||
actorId: "alice",
|
||||
targetIds: [],
|
||||
modifiers: [],
|
||||
};
|
||||
|
||||
// LLM validation / time delta mock responses:
|
||||
|
||||
Reference in New Issue
Block a user