Authentication
Production auth is configured through resolveEveCompatDefaults:
export default createEveCompatApp({
agentName: 'assistant',
...resolveEveCompatDefaults(),
});Auth modes
| Mode | Behavior |
|---|---|
none | No auth — development only |
token | Bearer token validation |
env | Read auth config from environment variables |
In production, auth: 'none' is rejected unless explicitly opted in.