Feat: Add wencai operator #3221 (#9116)

### What problem does this PR solve?

Feat: Add wencai operator #3221

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-07-30 14:34:06 +08:00
committed by GitHub
parent b638d3f773
commit 391c5586dd
7 changed files with 117 additions and 28 deletions

View File

@ -52,6 +52,8 @@ export function useAgentToolInitialValues() {
return pick(initialValues, 'top_n', 'email');
case Operator.GitHub:
return pick(initialValues, 'top_n');
case Operator.WenCai:
return pick(initialValues, 'top_n', 'query_type');
default:
return initialValues;