mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 19:05:11 +00:00
- Remove setApiKey, resolveApiKey, and global apiKeys Map from stream.ts - Rename getApiKey to getApiKeyFromEnv (only checks env vars) - Remove OAuth storage layer (storage.ts deleted) - OAuth login/refresh functions now return credentials instead of saving - getOAuthApiKey/refreshOAuthToken now take credentials as params - Add test/oauth.ts helper for ai package tests - Simplify root npm run check (single biome + tsgo pass) - Remove redundant check scripts from most packages - Add web-ui and coding-agent examples to biome/tsgo includes coding-agent still has compile errors - needs refactoring for new API
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/**
|
|
* API Keys and OAuth
|
|
*
|
|
* Configure API key resolution. Default checks: models.json, OAuth, env vars.
|
|
*/
|
|
|
|
import { getAgentDir } from "../../src/config.js";
|
|
import { configureOAuthStorage, createAgentSession, defaultGetApiKey, SessionManager } from "../../src/index.js";
|
|
|
|
// Default: uses env vars (ANTHROPIC_API_KEY, etc.), OAuth, and models.json
|
|
await createAgentSession({
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
console.log("Session with default API key resolution");
|
|
|
|
// Custom resolver
|
|
await createAgentSession({
|
|
getApiKey: async (model) => {
|
|
// Custom logic (secrets manager, database, etc.)
|
|
if (model.provider === "anthropic") {
|
|
return process.env.MY_ANTHROPIC_KEY;
|
|
}
|
|
// Fall back to default
|
|
return defaultGetApiKey()(model);
|
|
},
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
console.log("Session with custom API key resolver");
|
|
|
|
// Use OAuth from ~/.pi/agent while customizing everything else
|
|
configureOAuthStorage(getAgentDir()); // Must call before createAgentSession
|
|
|
|
await createAgentSession({
|
|
agentDir: "/tmp/custom-config", // Custom config location
|
|
// But OAuth tokens still come from ~/.pi/agent/oauth.json
|
|
systemPrompt: "You are helpful.",
|
|
skills: [],
|
|
sessionManager: SessionManager.inMemory(),
|
|
});
|
|
console.log("Session with OAuth from default location, custom config elsewhere");
|