mirror of
https://github.com/katanemo/plano.git
synced 2026-05-21 13:55:15 +02:00
fix: make mcp filter type explicit in mcp_filter demo (fixes #644)
Update the mcp_filter demo to explicitly declare `type: mcp` on each filter definition, matching the style of the http_filter demo which uses explicit `type: http`. This makes the configuration more readable and self-documenting instead of relying on the implicit default.
This commit is contained in:
parent
9406af3a09
commit
676d29ab8d
1 changed files with 3 additions and 6 deletions
|
|
@ -7,16 +7,13 @@ agents:
|
|||
filters:
|
||||
- id: input_guards
|
||||
url: http://localhost:10500
|
||||
# type: mcp (default)
|
||||
# transport: streamable-http (default)
|
||||
# tool: input_guards (default - same as filter id)
|
||||
type: mcp
|
||||
- id: query_rewriter
|
||||
url: http://localhost:10501
|
||||
# type: mcp (default)
|
||||
# transport: streamable-http (default)
|
||||
# tool: query_rewriter (default - same as filter id)
|
||||
type: mcp
|
||||
- id: context_builder
|
||||
url: http://localhost:10502
|
||||
type: mcp
|
||||
|
||||
model_providers:
|
||||
- model: openai/gpt-4o-mini
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue