How to Set Up API Key Authentication
Authenticate with API Keys - AUTH v1
Step 1: Obtain Your API Key
Best Practices for API Keys Security
PRIVATE_KEY=your-tokenfunction main() { /** * Initialize the config manager */ const configManager = new ConfigManager(); /** * Create the default config for the agent */ configManager.createDefaultConfig( process.env.PRIVATE_KEY || '', process.env.OPENAI_KEY || '', ) }
Last updated