lendctl-ai 0.1.2 → 0.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/bin/lendctl-ai +10 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/bin/lendctl-ai
CHANGED
|
@@ -1,2 +1,10 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
|
|
1
|
+
#!/usr/bin/env sh
|
|
2
|
+
# Find the real location of this script
|
|
3
|
+
SELF=$(cd "$(dirname "$0")" && pwd -P)/$(basename "$0")
|
|
4
|
+
while [ -h "$SELF" ]; do
|
|
5
|
+
DIR=$(dirname "$SELF")
|
|
6
|
+
SELF=$(readlink "$SELF")
|
|
7
|
+
case "$SELF" in /*) ;; *) SELF="$DIR/$SELF" ;; esac
|
|
8
|
+
done
|
|
9
|
+
DIR=$(dirname "$SELF")
|
|
10
|
+
exec node "$DIR/../dist/index.js" "$@"
|
package/dist/index.js
CHANGED
|
@@ -25629,7 +25629,7 @@ ${source_default.cyan("║")} ${source_default.bold.white("LendCtl AI")} - Auto
|
|
|
25629
25629
|
${source_default.cyan("║")} ${source_default.gray("Powered by LendCtl CLI Suite")} ${source_default.cyan("║")}
|
|
25630
25630
|
${source_default.cyan("╚═══════════════════════════════════════════════════════════╝")}
|
|
25631
25631
|
`;
|
|
25632
|
-
program2.name("lendctl-ai").description("Autonomous lending decision agent powered by LendCtl CLI suite").version("0.1.
|
|
25632
|
+
program2.name("lendctl-ai").description("Autonomous lending decision agent powered by LendCtl CLI suite").version("0.1.3");
|
|
25633
25633
|
program2.command("ask").description("Ask a lending question").argument("<question>", "Your lending question").option("-m, --model <model>", "LLM model to use", "gpt-4o").option("-i, --iterations <n>", "Max planning iterations", "3").option("-v, --verbose", "Show detailed output").option("--quick", "Quick mode (skip LLM report generation)").action(async (question, options) => {
|
|
25634
25634
|
console.log(banner);
|
|
25635
25635
|
const agent = new LendCtlAgent({
|