@bfun-bot/cli 1.0.10 → 1.0.12
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/README.md +2 -2
- package/dist/commands/llm.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ bfunbot fees
|
|
|
41
41
|
| `bfunbot fees breakdown` | Per-platform fee breakdown (flap + fourmeme) |
|
|
42
42
|
| `bfunbot fees --platform <p> --token <addr>` | Per-token fee detail |
|
|
43
43
|
| `bfunbot llm models` | List available LLM models |
|
|
44
|
-
| `bfunbot llm credits` | Check
|
|
44
|
+
| `bfunbot llm credits` | Check BFunBot LLM Credits balance |
|
|
45
45
|
| `bfunbot llm reload` | Reload credits from trading wallet |
|
|
46
46
|
| `bfunbot llm setup openclaw` | Configure OpenClaw integration |
|
|
47
47
|
| `bfunbot config get` | Show current config |
|
|
@@ -68,7 +68,7 @@ BSC (BNB Chain) only — flap and fourmeme platforms.
|
|
|
68
68
|
|
|
69
69
|
## LLM Gateway
|
|
70
70
|
|
|
71
|
-
The
|
|
71
|
+
The BFunBot LLM Gateway gives your agent access to frontier AI models (Claude, GPT, Gemini), billed from your BFunBot LLM Credits balance.
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
74
|
# Set up OpenClaw integration
|
package/dist/commands/llm.js
CHANGED
|
@@ -48,8 +48,8 @@ export function registerLlm(program) {
|
|
|
48
48
|
console.log(JSON.stringify(res, null, 2));
|
|
49
49
|
return;
|
|
50
50
|
}
|
|
51
|
-
printCard('
|
|
52
|
-
['Balance', chalk.
|
|
51
|
+
printCard('BFunBot LLM Credits', [
|
|
52
|
+
['Balance', chalk.bold.whiteBright(`$${res.balance_usd}`)],
|
|
53
53
|
]);
|
|
54
54
|
// Show agent reload config
|
|
55
55
|
if (res.agent_reload) {
|