- Add envVars field to Agent and Collection models in Prisma schema - Add envVars to UpdateAgentSchema and UpdateCollectionSchema types - Implement env vars merging logic (agent overrides collection) - Pass env vars through tool executor to sandbox - Add UI for managing env vars in agent and collection settings pages - Update API routes to handle envVars PATCH updates - Refactor discord tool execute functions for biome compatibility This allows users to configure tool-specific environment variables (like DISCORD_BOT_TOKEN) at both the collection and agent level, with agent settings taking precedence over collection settings.
11 lines
239 B
JSON
11 lines
239 B
JSON
{
|
|
"extends": "@tpmjs/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"declaration": true,
|
|
"declarationMap": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|