apteva 0.4.6 → 0.4.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/providers.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apteva",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "Run AI agents locally. Multi-provider support for Claude, GPT, Gemini, Llama, and more.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/providers.ts CHANGED
@@ -360,7 +360,7 @@ export const Onboarding = {
360
360
 
361
361
  // Get provider list with configuration status for frontend
362
362
  export function getProvidersWithStatus() {
363
- const configuredProviders = new Set(ProviderKeys.getConfiguredProviders());
363
+ const configuredProviders = new Set(ProviderKeysDB.getAllConfiguredProviders());
364
364
  const keyStatuses = new Map(
365
365
  ProviderKeys.getAll().map(k => [k.provider_id, k])
366
366
  );