@@ -41,7 +41,6 @@ describe('Dynamic Agent Schema Validation', () => {
4141 'no-prompt-schema.ts' : {
4242 id : 'no_prompt_schema_agent' ,
4343 version : '1.0.0' ,
44- override : false ,
4544 displayName : 'No Prompt Schema Agent' ,
4645 parentPrompt : 'Test agent without prompt schema' ,
4746 model : 'anthropic/claude-4-sonnet-20250522' ,
@@ -74,7 +73,6 @@ describe('Dynamic Agent Schema Validation', () => {
7473 'no-params-schema.ts' : {
7574 id : 'no_params_schema_agent' ,
7675 version : '1.0.0' ,
77- override : false ,
7876 displayName : 'No Params Schema Agent' ,
7977 parentPrompt : 'Test agent without params schema' ,
8078 model : 'anthropic/claude-4-sonnet-20250522' ,
@@ -109,7 +107,6 @@ describe('Dynamic Agent Schema Validation', () => {
109107 'both-schemas.ts' : {
110108 id : 'both_schemas_agent' ,
111109 version : '1.0.0' ,
112- override : false ,
113110 displayName : 'Both Schemas Agent' ,
114111 parentPrompt : 'Test agent with both schemas' ,
115112 model : 'anthropic/claude-4-sonnet-20250522' ,
@@ -120,7 +117,6 @@ describe('Dynamic Agent Schema Validation', () => {
120117 inputSchema : {
121118 prompt : {
122119 type : 'string' ,
123- minLength : 1 ,
124120 description : 'A required prompt' ,
125121 } ,
126122 params : {
@@ -179,7 +175,6 @@ describe('Dynamic Agent Schema Validation', () => {
179175 'complex-schema.ts' : {
180176 id : 'complex_schema_agent' ,
181177 version : '1.0.0' ,
182- override : false ,
183178 displayName : 'Complex Schema Agent' ,
184179 parentPrompt : 'Test agent with complex nested schema' ,
185180 model : 'anthropic/claude-4-sonnet-20250522' ,
@@ -262,7 +257,6 @@ describe('Dynamic Agent Schema Validation', () => {
262257 'error-context.ts' : {
263258 id : 'error_context_agent' ,
264259 version : '1.0.0' ,
265- override : false ,
266260 displayName : 'Error Context Agent' ,
267261 parentPrompt : 'Test agent for error context' ,
268262 model : 'anthropic/claude-4-sonnet-20250522' ,
@@ -272,7 +266,7 @@ describe('Dynamic Agent Schema Validation', () => {
272266
273267 inputSchema : {
274268 prompt : {
275- type : 'boolean' , // Invalid for prompt schema
269+ type : 'boolean' as any , // Invalid for prompt schema
276270 } ,
277271 } ,
278272 outputMode : 'last_message' ,
@@ -299,7 +293,6 @@ describe('Dynamic Agent Schema Validation', () => {
299293 'git-committer.ts' : {
300294 id : 'CodebuffAI/git-committer' ,
301295 version : '0.0.1' ,
302- override : false ,
303296 displayName : 'Git Committer' ,
304297 parentPrompt :
305298 'A git committer agent specialized to commit current changes with an appropriate commit message.' ,
@@ -360,7 +353,7 @@ describe('Dynamic Agent Schema Validation', () => {
360353 'empty-schema.ts' : {
361354 id : 'empty_schema_agent' ,
362355 version : '1.0.0' ,
363- override : false ,
356+
364357 displayName : 'Empty Schema Agent' ,
365358 parentPrompt : 'Test agent with empty schema' ,
366359 model : 'anthropic/claude-4-sonnet-20250522' ,
0 commit comments