@theokit/sdk 4.12.0 → 4.12.2
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/CHANGELOG.md +12 -0
- package/dist/cron.cjs +1 -1
- package/dist/cron.cjs.map +1 -1
- package/dist/cron.js +1 -1
- package/dist/cron.js.map +1 -1
- package/dist/eval.cjs +1 -1
- package/dist/eval.cjs.map +1 -1
- package/dist/eval.js +1 -1
- package/dist/eval.js.map +1 -1
- package/dist/index.cjs +13 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.12.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix (agent-builder M43): the `openai-chatgpt` builtin's ambient credential store now uses a DEDICATED `THEOKIT_AUTH_HOME` env override instead of `THEOKIT_HOME`. `THEOKIT_HOME` is the SDK's whole home directory (personality, credential-pool, profiles) — overloading it to point the credential store redirected the entire runtime and broke non-Codex model resolution. `THEOKIT_AUTH_HOME` points ONLY the credential store; unset, the store defaults to `~/.theokit/auth.json`.
|
|
8
|
+
|
|
9
|
+
## 4.12.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- `Provider.builtins()` (agent-builder M43): returns every first-party builtin provider — including the `openai-chatgpt` Codex builtin — as model-provider plugins. A runtime that does NOT share the SDK's provider registry (the `theokit` agent server / `@theokit/agents`, which resolve models via their own `buildModelSelection`) can now route to any SDK builtin with ZERO provider-specific code: `Agent.create({ plugins: Provider.builtins() })` (or the agents `.plugins(Provider.builtins())`), then pick a `provider/model` id. Adding a provider stays one SDK file — it is auto-included. The full ProviderProfile (transport + the auth `transform`) rides along into the consuming runtime.
|
|
14
|
+
|
|
3
15
|
## 4.12.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/cron.cjs
CHANGED
|
@@ -11683,7 +11683,7 @@ var DEFAULT_STORE = {
|
|
|
11683
11683
|
home: os.homedir(),
|
|
11684
11684
|
dirName: ".theokit",
|
|
11685
11685
|
fileName: "auth.json",
|
|
11686
|
-
homeEnvVar: "
|
|
11686
|
+
homeEnvVar: "THEOKIT_AUTH_HOME"
|
|
11687
11687
|
};
|
|
11688
11688
|
var OPENAI_OAUTH_CONFIG = {
|
|
11689
11689
|
provider: "openai",
|