@stjbrown/agent-knowledge 0.1.0-beta.7 → 0.1.0-beta.9
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 +14 -5
- package/dist/{chunk-LQOMGCIP.js → chunk-4C5RB7PY.js} +2 -2
- package/dist/{chunk-GR2RFQE4.js → chunk-S237DEGI.js} +449 -195
- package/dist/chunk-S237DEGI.js.map +1 -0
- package/dist/headless.js +2 -2
- package/dist/index.js +2 -2
- package/dist/main.js +5 -7
- package/dist/main.js.map +1 -1
- package/dist/{tui-QMMAC7W7.js → tui-VQA6AJPW.js} +127 -35
- package/dist/tui-VQA6AJPW.js.map +1 -0
- package/package.json +4 -4
- package/dist/chunk-GR2RFQE4.js.map +0 -1
- package/dist/chunk-PRZR6RDP.js +0 -94
- package/dist/chunk-PRZR6RDP.js.map +0 -1
- package/dist/tui-QMMAC7W7.js.map +0 -1
- /package/dist/{chunk-LQOMGCIP.js.map → chunk-4C5RB7PY.js.map} +0 -0
package/README.md
CHANGED
|
@@ -77,7 +77,8 @@ token-free OKF conformance check before the agent's drift audit, so it is usable
|
|
|
77
77
|
|
|
78
78
|
| Command | |
|
|
79
79
|
|---|---|
|
|
80
|
-
| `/models` · `/model [id]` | pick a
|
|
80
|
+
| `/models` · `/model [id]` | pick a configured provider and model, or switch directly by id |
|
|
81
|
+
| `/providers` | show detected providers and the environment variables that enable more |
|
|
81
82
|
| `/login <anthropic\|openai-codex> [browser\|device]` · `/logout` · `/auth` | subscription sign-in and status; device mode is available for remote OpenAI login |
|
|
82
83
|
| `/observability` · `/traces` | configure opt-in tracing and browse local trace history |
|
|
83
84
|
| `/cancel` | cancel the active turn; Esc or Ctrl+C does the same while Janet is working |
|
|
@@ -85,10 +86,18 @@ token-free OKF conformance check before the agent's drift audit, so it is usable
|
|
|
85
86
|
|
|
86
87
|
Just type to talk to Janet; ↑/↓ recalls previous prompts.
|
|
87
88
|
|
|
88
|
-
**Models & providers.** No default provider — you choose. Janet
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
89
|
+
**Models & providers.** No default provider — you choose. Janet discovers configured providers and
|
|
90
|
+
their current model catalogs through Mastra's native model router. The first provider cohort is
|
|
91
|
+
OpenAI, Anthropic, Google AI Studio, DeepSeek, Groq, Mistral, xAI, OpenRouter, Together AI,
|
|
92
|
+
Fireworks AI, and Cerebras. Set the provider's standard environment variable, restart Janet, and
|
|
93
|
+
use `/models`; `/providers` shows the exact variable names without revealing their values.
|
|
94
|
+
|
|
95
|
+
Vertex AI (ADC/service account) and Amazon Bedrock (AWS credential chain) use Janet's dedicated
|
|
96
|
+
cloud gateways. OpenAI and Anthropic additionally support ChatGPT/Codex and Claude Max subscription
|
|
97
|
+
OAuth. An explicitly exported `OPENAI_API_KEY` or `ANTHROPIC_API_KEY` takes precedence over stored
|
|
98
|
+
OAuth for that process; unset it to return to subscription authentication. Any other configured
|
|
99
|
+
Mastra-native provider remains usable through `/model provider/model` or `--model provider/model`
|
|
100
|
+
even when it is not in the initial cohort. The selected model persists across restarts.
|
|
92
101
|
|
|
93
102
|
**Observability.** Tracing is strictly off by default. Run `/observability` to choose local trace
|
|
94
103
|
history, Phoenix, or a custom OTLP endpoint. Metadata-only capture records timing, model and tool
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
bootJanet,
|
|
6
6
|
messageText,
|
|
7
7
|
messageToolNames
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-S237DEGI.js";
|
|
9
9
|
|
|
10
10
|
// src/headless/run.ts
|
|
11
11
|
async function runHeadless(opts) {
|
|
@@ -124,4 +124,4 @@ Janet hit a snag: ${err.message}
|
|
|
124
124
|
export {
|
|
125
125
|
runHeadless
|
|
126
126
|
};
|
|
127
|
-
//# sourceMappingURL=chunk-
|
|
127
|
+
//# sourceMappingURL=chunk-4C5RB7PY.js.map
|