dirac-lang 0.1.93 → 0.1.94
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-AQDM6UOR.js → agent-L6C3Z2YG.js} +2 -2
- package/dist/{chunk-NEANEMFG.js → chunk-3MD2NFUM.js} +1 -1
- package/dist/{chunk-SYFYHKKI.js → chunk-6CVWLZYL.js} +56 -13
- package/dist/{chunk-YP5V45VU.js → chunk-LHNUYXML.js} +1 -1
- package/dist/cli.js +9 -9
- package/dist/{cron-XEF6QGZQ.js → cron-CI4QNHTO.js} +1 -1
- package/dist/index.js +2 -2
- package/dist/{interpreter-YOKUG27J.js → interpreter-QR2YWK6R.js} +1 -1
- package/dist/{run-at-TYMEPTBO.js → run-at-IDE7KGHV.js} +1 -1
- package/dist/{schedule-MOPMQZXD.js → schedule-5SRRRO6K.js} +1 -1
- package/dist/{session-server-36HQWVKN.js → session-server-H6P4IXUF.js} +2 -2
- package/dist/{shell-IYJJWIQR.js → shell-3FJRBNSJ.js} +11 -11
- package/dist/test-runner.js +1 -1
- package/package.json +1 -1
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
SessionServer,
|
|
3
3
|
getSocketPath,
|
|
4
4
|
isSessionRunning
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-3MD2NFUM.js";
|
|
6
|
+
import "./chunk-6CVWLZYL.js";
|
|
7
7
|
import "./chunk-ECAW4X46.js";
|
|
8
8
|
import "./chunk-SLGJRZ3P.js";
|
|
9
9
|
import "./chunk-HRHAMPOB.js";
|
|
@@ -487,12 +487,12 @@ async function executeIf(session, element) {
|
|
|
487
487
|
const condition = await evaluatePredicate(session, conditionElement);
|
|
488
488
|
if (condition) {
|
|
489
489
|
if (thenElement) {
|
|
490
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
490
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
491
491
|
await integrateChildren2(session, thenElement);
|
|
492
492
|
}
|
|
493
493
|
} else {
|
|
494
494
|
if (elseElement) {
|
|
495
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
495
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
496
496
|
await integrateChildren2(session, elseElement);
|
|
497
497
|
}
|
|
498
498
|
}
|
|
@@ -505,7 +505,7 @@ async function evaluatePredicate(session, predicateElement) {
|
|
|
505
505
|
return await evaluateCondition(session, predicateElement);
|
|
506
506
|
}
|
|
507
507
|
const outputLengthBefore = session.output.length;
|
|
508
|
-
const { integrate: integrate2 } = await import("./interpreter-
|
|
508
|
+
const { integrate: integrate2 } = await import("./interpreter-QR2YWK6R.js");
|
|
509
509
|
await integrate2(session, predicateElement);
|
|
510
510
|
const newOutputChunks = session.output.slice(outputLengthBefore);
|
|
511
511
|
const result = newOutputChunks.join("").trim();
|
|
@@ -528,11 +528,11 @@ async function evaluateCondition(session, condElement) {
|
|
|
528
528
|
}
|
|
529
529
|
const outputLengthBefore = session.output.length;
|
|
530
530
|
const args = [];
|
|
531
|
-
const { integrate: integrate2 } = await import("./interpreter-
|
|
531
|
+
const { integrate: integrate2 } = await import("./interpreter-QR2YWK6R.js");
|
|
532
532
|
for (const child of condElement.children) {
|
|
533
533
|
if (child.tag.toLowerCase() === "arg") {
|
|
534
534
|
const argOutputStart = session.output.length;
|
|
535
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
535
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
536
536
|
await integrateChildren2(session, child);
|
|
537
537
|
const newChunks = session.output.slice(argOutputStart);
|
|
538
538
|
const argValue = newChunks.join("");
|
|
@@ -722,6 +722,37 @@ function serializeElement(element, prompt) {
|
|
|
722
722
|
serialize(element);
|
|
723
723
|
return lines.join("\n");
|
|
724
724
|
}
|
|
725
|
+
function serializeSimple(el, indent, lines) {
|
|
726
|
+
if (el.text && !el.tag) {
|
|
727
|
+
const trimmed = el.text.trim();
|
|
728
|
+
if (trimmed) {
|
|
729
|
+
lines.push(indent + trimmed);
|
|
730
|
+
}
|
|
731
|
+
return;
|
|
732
|
+
}
|
|
733
|
+
if (!el.tag) return;
|
|
734
|
+
let tag = `${indent}<${el.tag}`;
|
|
735
|
+
if (el.attributes) {
|
|
736
|
+
for (const [key, value] of Object.entries(el.attributes)) {
|
|
737
|
+
tag += ` ${key}="${value.replace(/"/g, """)}"`;
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
if (!el.children || el.children.length === 0) {
|
|
741
|
+
if (el.text) {
|
|
742
|
+
lines.push(tag + ">");
|
|
743
|
+
lines.push(indent + " " + el.text);
|
|
744
|
+
lines.push(`${indent}</${el.tag}>`);
|
|
745
|
+
} else {
|
|
746
|
+
lines.push(tag + " />");
|
|
747
|
+
}
|
|
748
|
+
} else {
|
|
749
|
+
lines.push(tag + ">");
|
|
750
|
+
for (const child of el.children) {
|
|
751
|
+
serializeSimple(child, indent + " ", lines);
|
|
752
|
+
}
|
|
753
|
+
lines.push(`${indent}</${el.tag}>`);
|
|
754
|
+
}
|
|
755
|
+
}
|
|
725
756
|
async function executeLLM(session, element) {
|
|
726
757
|
if (!session.llmClient) {
|
|
727
758
|
throw new Error("<llm> tag requires LLM configuration. Set LLM_PROVIDER (ollama/anthropic/openai/custom) and appropriate API keys in environment or config.yml");
|
|
@@ -1163,8 +1194,20 @@ ${result}
|
|
|
1163
1194
|
${validation.errorMessages.join("\n")}`);
|
|
1164
1195
|
}
|
|
1165
1196
|
if (correctionMessages.length > 0 && feedbackMode) {
|
|
1197
|
+
const correctedCodeLines = [];
|
|
1198
|
+
for (const child of dynamicAST.children) {
|
|
1199
|
+
if (child.tag && child.tag !== "DIRAC-ROOT") {
|
|
1200
|
+
serializeSimple(child, "", correctedCodeLines);
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
const correctedCode = correctedCodeLines.join("\n");
|
|
1166
1204
|
const correctionFeedback = `System: Auto-corrections applied:
|
|
1167
|
-
${correctionMessages.join("\n")}
|
|
1205
|
+
${correctionMessages.join("\n")}
|
|
1206
|
+
|
|
1207
|
+
Actual code executed:
|
|
1208
|
+
\`\`\`xml
|
|
1209
|
+
${correctedCode}
|
|
1210
|
+
\`\`\``;
|
|
1168
1211
|
dialogHistory.push({ role: "user", content: correctionFeedback });
|
|
1169
1212
|
if (contextVar) {
|
|
1170
1213
|
setVariable(session, contextVar, JSON.stringify(dialogHistory), true);
|
|
@@ -1828,7 +1871,7 @@ async function executeTagCheck(session, element) {
|
|
|
1828
1871
|
const executeTag = correctedTag || tagName;
|
|
1829
1872
|
console.error(`[tag-check] Executing <${executeTag}/> as all checks passed and execute=true.`);
|
|
1830
1873
|
const elementToExecute = correctedTag ? { ...child, tag: correctedTag } : child;
|
|
1831
|
-
const { integrate: integrate2 } = await import("./interpreter-
|
|
1874
|
+
const { integrate: integrate2 } = await import("./interpreter-QR2YWK6R.js");
|
|
1832
1875
|
await integrate2(session, elementToExecute);
|
|
1833
1876
|
}
|
|
1834
1877
|
}
|
|
@@ -1837,7 +1880,7 @@ async function executeTagCheck(session, element) {
|
|
|
1837
1880
|
// src/tags/throw.ts
|
|
1838
1881
|
async function executeThrow(session, element) {
|
|
1839
1882
|
const exceptionName = element.attributes?.name || "exception";
|
|
1840
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
1883
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
1841
1884
|
const exceptionDom = {
|
|
1842
1885
|
tag: "exception-content",
|
|
1843
1886
|
attributes: { name: exceptionName },
|
|
@@ -1850,7 +1893,7 @@ async function executeThrow(session, element) {
|
|
|
1850
1893
|
// src/tags/try.ts
|
|
1851
1894
|
async function executeTry(session, element) {
|
|
1852
1895
|
setExceptionBoundary(session);
|
|
1853
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
1896
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
1854
1897
|
await integrateChildren2(session, element);
|
|
1855
1898
|
unsetExceptionBoundary(session);
|
|
1856
1899
|
}
|
|
@@ -1860,7 +1903,7 @@ async function executeCatch(session, element) {
|
|
|
1860
1903
|
const exceptionName = element.attributes?.name || "exception";
|
|
1861
1904
|
const caughtCount = lookupException(session, exceptionName);
|
|
1862
1905
|
if (caughtCount > 0) {
|
|
1863
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
1906
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
1864
1907
|
await integrateChildren2(session, element);
|
|
1865
1908
|
}
|
|
1866
1909
|
flushCurrentException(session);
|
|
@@ -1869,7 +1912,7 @@ async function executeCatch(session, element) {
|
|
|
1869
1912
|
// src/tags/exception.ts
|
|
1870
1913
|
async function executeException(session, element) {
|
|
1871
1914
|
const exceptions = getCurrentExceptions(session);
|
|
1872
|
-
const { integrateChildren: integrateChildren2 } = await import("./interpreter-
|
|
1915
|
+
const { integrateChildren: integrateChildren2 } = await import("./interpreter-QR2YWK6R.js");
|
|
1873
1916
|
for (const exceptionDom of exceptions) {
|
|
1874
1917
|
await integrateChildren2(session, exceptionDom);
|
|
1875
1918
|
}
|
|
@@ -2070,7 +2113,7 @@ async function executeLoadContext(session, element) {
|
|
|
2070
2113
|
query = element.text.trim();
|
|
2071
2114
|
}
|
|
2072
2115
|
if (!query && element.children.length > 0) {
|
|
2073
|
-
const { integrate: integrate2 } = await import("./interpreter-
|
|
2116
|
+
const { integrate: integrate2 } = await import("./interpreter-QR2YWK6R.js");
|
|
2074
2117
|
const beforeOutput = session.output.length;
|
|
2075
2118
|
for (const child of element.children) {
|
|
2076
2119
|
await integrate2(session, child);
|
|
@@ -2914,7 +2957,7 @@ async function executeForeach(session, element) {
|
|
|
2914
2957
|
const parser2 = new DiracParser2();
|
|
2915
2958
|
try {
|
|
2916
2959
|
const fromElement = parser2.parse(fromAttr);
|
|
2917
|
-
const { integrate: integrate2 } = await import("./interpreter-
|
|
2960
|
+
const { integrate: integrate2 } = await import("./interpreter-QR2YWK6R.js");
|
|
2918
2961
|
await integrate2(session, fromElement);
|
|
2919
2962
|
} catch (e) {
|
|
2920
2963
|
session.output = savedOutput;
|
package/dist/cli.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
execute
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-LHNUYXML.js";
|
|
5
5
|
import {
|
|
6
6
|
BraKetParser
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-6CVWLZYL.js";
|
|
8
8
|
import "./chunk-ECAW4X46.js";
|
|
9
9
|
import "./chunk-SLGJRZ3P.js";
|
|
10
10
|
import "./chunk-HRHAMPOB.js";
|
|
@@ -16,7 +16,7 @@ import "dotenv/config";
|
|
|
16
16
|
// package.json
|
|
17
17
|
var package_default = {
|
|
18
18
|
name: "dirac-lang",
|
|
19
|
-
version: "0.1.
|
|
19
|
+
version: "0.1.94",
|
|
20
20
|
description: "LLM-Augmented Declarative Execution",
|
|
21
21
|
type: "module",
|
|
22
22
|
main: "dist/index.js",
|
|
@@ -150,7 +150,7 @@ async function main() {
|
|
|
150
150
|
const args = process.argv.slice(2);
|
|
151
151
|
const calledAs = process.argv[1];
|
|
152
152
|
if (calledAs && calledAs.endsWith("/dish")) {
|
|
153
|
-
const { DiracShell } = await import("./shell-
|
|
153
|
+
const { DiracShell } = await import("./shell-3FJRBNSJ.js");
|
|
154
154
|
const shellConfig = loadShellConfig(args);
|
|
155
155
|
const shell = new DiracShell(shellConfig);
|
|
156
156
|
await shell.start();
|
|
@@ -199,11 +199,11 @@ async function main() {
|
|
|
199
199
|
if (args[0] === "agent") {
|
|
200
200
|
const subcommand = args[1];
|
|
201
201
|
if (subcommand === "daemon") {
|
|
202
|
-
const { runAgentDaemon } = await import("./agent-
|
|
202
|
+
const { runAgentDaemon } = await import("./agent-L6C3Z2YG.js");
|
|
203
203
|
await runAgentDaemon();
|
|
204
204
|
return;
|
|
205
205
|
}
|
|
206
|
-
const { AgentCLI } = await import("./agent-
|
|
206
|
+
const { AgentCLI } = await import("./agent-L6C3Z2YG.js");
|
|
207
207
|
const agent = new AgentCLI();
|
|
208
208
|
switch (subcommand) {
|
|
209
209
|
case "start":
|
|
@@ -230,8 +230,8 @@ async function main() {
|
|
|
230
230
|
return;
|
|
231
231
|
}
|
|
232
232
|
if (args[0] === "shell") {
|
|
233
|
-
const { DiracShell } = await import("./shell-
|
|
234
|
-
const { SessionServer, isSessionRunning, getSocketPath } = await import("./session-server-
|
|
233
|
+
const { DiracShell } = await import("./shell-3FJRBNSJ.js");
|
|
234
|
+
const { SessionServer, isSessionRunning, getSocketPath } = await import("./session-server-H6P4IXUF.js");
|
|
235
235
|
const { SessionClient } = await import("./session-client-3VTC5MLO.js");
|
|
236
236
|
const daemonMode = args.includes("--daemon") || args.includes("-d");
|
|
237
237
|
const agentMode = args.includes("--agent") || args.includes("-a");
|
|
@@ -277,7 +277,7 @@ async function main() {
|
|
|
277
277
|
return;
|
|
278
278
|
}
|
|
279
279
|
if (args[0] === "daemon") {
|
|
280
|
-
const { SessionServer } = await import("./session-server-
|
|
280
|
+
const { SessionServer } = await import("./session-server-H6P4IXUF.js");
|
|
281
281
|
const server = new SessionServer();
|
|
282
282
|
await server.start();
|
|
283
283
|
console.log("Session daemon started");
|
package/dist/index.js
CHANGED
|
@@ -2,10 +2,10 @@ import {
|
|
|
2
2
|
createLLMAdapter,
|
|
3
3
|
execute,
|
|
4
4
|
executeUserCommand
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-LHNUYXML.js";
|
|
6
6
|
import {
|
|
7
7
|
integrate
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-6CVWLZYL.js";
|
|
9
9
|
import "./chunk-ECAW4X46.js";
|
|
10
10
|
import "./chunk-SLGJRZ3P.js";
|
|
11
11
|
import {
|
|
@@ -2,8 +2,8 @@ import {
|
|
|
2
2
|
SessionServer,
|
|
3
3
|
getSocketPath,
|
|
4
4
|
isSessionRunning
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-3MD2NFUM.js";
|
|
6
|
+
import "./chunk-6CVWLZYL.js";
|
|
7
7
|
import "./chunk-ECAW4X46.js";
|
|
8
8
|
import "./chunk-SLGJRZ3P.js";
|
|
9
9
|
import "./chunk-HRHAMPOB.js";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
BraKetParser,
|
|
4
4
|
integrate
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-6CVWLZYL.js";
|
|
6
6
|
import "./chunk-ECAW4X46.js";
|
|
7
7
|
import "./chunk-SLGJRZ3P.js";
|
|
8
8
|
import {
|
|
@@ -358,7 +358,7 @@ var DiracShell = class {
|
|
|
358
358
|
if (this.client) {
|
|
359
359
|
this.client.disconnect();
|
|
360
360
|
}
|
|
361
|
-
import("./schedule-
|
|
361
|
+
import("./schedule-5SRRRO6K.js").then(({ stopAllScheduledTasks }) => {
|
|
362
362
|
stopAllScheduledTasks();
|
|
363
363
|
console.log("\nGoodbye!");
|
|
364
364
|
process.exit(0);
|
|
@@ -763,7 +763,7 @@ Examples:
|
|
|
763
763
|
break;
|
|
764
764
|
case "tasks":
|
|
765
765
|
try {
|
|
766
|
-
const { listScheduledTasks } = await import("./schedule-
|
|
766
|
+
const { listScheduledTasks } = await import("./schedule-5SRRRO6K.js");
|
|
767
767
|
const tasks = listScheduledTasks();
|
|
768
768
|
if (tasks.length === 0) {
|
|
769
769
|
console.log("No scheduled tasks running.");
|
|
@@ -782,7 +782,7 @@ Examples:
|
|
|
782
782
|
console.log("Usage: :stop <task-name>");
|
|
783
783
|
} else {
|
|
784
784
|
try {
|
|
785
|
-
const { stopScheduledTask } = await import("./schedule-
|
|
785
|
+
const { stopScheduledTask } = await import("./schedule-5SRRRO6K.js");
|
|
786
786
|
const taskName = args[0];
|
|
787
787
|
const stopped = stopScheduledTask(taskName);
|
|
788
788
|
if (stopped) {
|
|
@@ -797,7 +797,7 @@ Examples:
|
|
|
797
797
|
break;
|
|
798
798
|
case "stopall":
|
|
799
799
|
try {
|
|
800
|
-
const { stopAllScheduledTasks } = await import("./schedule-
|
|
800
|
+
const { stopAllScheduledTasks } = await import("./schedule-5SRRRO6K.js");
|
|
801
801
|
stopAllScheduledTasks();
|
|
802
802
|
console.log("All scheduled tasks stopped.");
|
|
803
803
|
} catch (error) {
|
|
@@ -806,7 +806,7 @@ Examples:
|
|
|
806
806
|
break;
|
|
807
807
|
case "crons":
|
|
808
808
|
try {
|
|
809
|
-
const { listCronJobs } = await import("./cron-
|
|
809
|
+
const { listCronJobs } = await import("./cron-CI4QNHTO.js");
|
|
810
810
|
const jobs = listCronJobs();
|
|
811
811
|
if (jobs.length === 0) {
|
|
812
812
|
console.log("No cron jobs running.");
|
|
@@ -826,7 +826,7 @@ Examples:
|
|
|
826
826
|
console.log("Usage: :stopcron <job-name>");
|
|
827
827
|
} else {
|
|
828
828
|
try {
|
|
829
|
-
const { stopCronJob } = await import("./cron-
|
|
829
|
+
const { stopCronJob } = await import("./cron-CI4QNHTO.js");
|
|
830
830
|
const jobName = args[0];
|
|
831
831
|
const stopped = stopCronJob(jobName);
|
|
832
832
|
if (stopped) {
|
|
@@ -841,7 +841,7 @@ Examples:
|
|
|
841
841
|
break;
|
|
842
842
|
case "stopallcrons":
|
|
843
843
|
try {
|
|
844
|
-
const { stopAllCronJobs } = await import("./cron-
|
|
844
|
+
const { stopAllCronJobs } = await import("./cron-CI4QNHTO.js");
|
|
845
845
|
stopAllCronJobs();
|
|
846
846
|
console.log("All cron jobs stopped.");
|
|
847
847
|
} catch (error) {
|
|
@@ -850,7 +850,7 @@ Examples:
|
|
|
850
850
|
break;
|
|
851
851
|
case "scheduled":
|
|
852
852
|
try {
|
|
853
|
-
const { listScheduledRuns } = await import("./run-at-
|
|
853
|
+
const { listScheduledRuns } = await import("./run-at-IDE7KGHV.js");
|
|
854
854
|
const runs = listScheduledRuns();
|
|
855
855
|
if (runs.length === 0) {
|
|
856
856
|
console.log("No scheduled runs pending.");
|
|
@@ -870,7 +870,7 @@ Examples:
|
|
|
870
870
|
console.log("Usage: :cancel <run-name>");
|
|
871
871
|
} else {
|
|
872
872
|
try {
|
|
873
|
-
const { cancelScheduledRun } = await import("./run-at-
|
|
873
|
+
const { cancelScheduledRun } = await import("./run-at-IDE7KGHV.js");
|
|
874
874
|
const runName = args[0];
|
|
875
875
|
const cancelled = cancelScheduledRun(runName);
|
|
876
876
|
if (cancelled) {
|
|
@@ -885,7 +885,7 @@ Examples:
|
|
|
885
885
|
break;
|
|
886
886
|
case "cancelall":
|
|
887
887
|
try {
|
|
888
|
-
const { cancelAllScheduledRuns } = await import("./run-at-
|
|
888
|
+
const { cancelAllScheduledRuns } = await import("./run-at-IDE7KGHV.js");
|
|
889
889
|
cancelAllScheduledRuns();
|
|
890
890
|
console.log("All scheduled runs cancelled.");
|
|
891
891
|
} catch (error) {
|
package/dist/test-runner.js
CHANGED