mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-25 01:43:27 +08:00
## Summary
This PR consolidates Eino-backed Agent tools behind the shared
ToolBackedComponent implementation and aligns their Canvas
configuration,
runtime inputs, output conversion, validation, and registration.
## What changed
- Migrated these Canvas components to the unified tool-backed path:
- Tavily Search and Extract
- Execute SQL
- Google
- Yahoo Finance
- Email
- DuckDuckGo
- Wikipedia
- Google Scholar
- ArXiv
- PubMed
- BGPT
- GitHub
- WenCai
- SearXNG
- Keenable Search
- Removed superseded component wrappers and their duplicate tests.
- Added dedicated registry builders for node-level configuration and
validation.
- Kept model-emitted runtime inputs separate from Canvas node
configuration.
- Moved Email defaults, template resolution, recipient parsing, SMTP
execution, and output conversion into the owning tool.
- Added complete ToolComponent specifications for Canvas inputs,
outputs, and input forms.
- Preserved raw upstream fields where downstream workflows may depend on
them.
- Added workflow registration coverage for all migrated component names.
- Kept HTTP Request, Docs Generator, and Browser as standalone
components because they are not Eino-backed tools.
## Testing
Passed:
bash build.sh --test ./internal/agent/tool/...
bash build.sh --test ./internal/agent/component/...
bash build.sh --test ./internal/agent/runtime/...
<img width="2057" height="1111" alt="image"
src="https://github.com/user-attachments/assets/c728d7a3-9d15-4c5c-b0eb-6b77ad0e41ac"
/>
<img width="2057" height="1111" alt="image"
src="https://github.com/user-attachments/assets/ef13119a-ef92-4b43-9061-eee9511bf492"
/>
<img width="2057" height="1111" alt="image"
src="https://github.com/user-attachments/assets/f50f2c30-eab0-463c-b0b3-0a02523219f1"
/>
185 lines
5.6 KiB
Go
185 lines
5.6 KiB
Go
//
|
|
// Copyright 2026 The InfiniFlow Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package tool
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/cloudwego/eino/components/tool"
|
|
"github.com/cloudwego/eino/schema"
|
|
)
|
|
|
|
const (
|
|
wencaiToolName = "iwencai"
|
|
defaultWencaiTopN = 10
|
|
defaultWencaiQueryType = "stock"
|
|
)
|
|
|
|
const wencaiToolDescription = `
|
|
iwencai search: search platform is committed to providing hundreds of millions of investors with the most timely, accurate and comprehensive information, covering news, announcements, research reports, blogs, forums, Weibo, characters, etc.
|
|
robo-advisor intelligent stock selection platform: through AI technology, is committed to providing investors with intelligent stock selection, quantitative investment, main force tracking, value investment, technical analysis and other types of stock selection technologies.
|
|
fund selection platform: through AI technology, is committed to providing excellent fund, value investment, quantitative analysis and other fund selection technologies for foundation citizens.
|
|
`
|
|
|
|
var wencaiQueryTypes = map[string]struct{}{
|
|
"stock": {},
|
|
"zhishu": {},
|
|
"fund": {},
|
|
"hkstock": {},
|
|
"usstock": {},
|
|
"threeboard": {},
|
|
"conbond": {},
|
|
"insurance": {},
|
|
"futures": {},
|
|
"lccp": {},
|
|
"foreign_exchange": {},
|
|
}
|
|
|
|
// wencaiParams mirrors Python WenCaiParam. Query is model-provided runtime
|
|
// input; top_n and query_type are Canvas node configuration.
|
|
type wencaiParams struct {
|
|
Query string `json:"query"`
|
|
TopN int `json:"top_n"`
|
|
QueryType string `json:"query_type"`
|
|
}
|
|
|
|
type wencaiEnvelope struct {
|
|
Report string `json:"report"`
|
|
Error string `json:"_ERROR,omitempty"`
|
|
}
|
|
|
|
// WencaiTool implements the behavior currently exposed by Python WenCai.
|
|
// The Python integration has its upstream request disabled and returns an
|
|
// empty report for both empty and non-empty queries, so the Go tool does the
|
|
// same without reporting a false unsupported error.
|
|
type WencaiTool struct {
|
|
defaults wencaiParams
|
|
}
|
|
|
|
var _ ToolComponent = (*WencaiTool)(nil)
|
|
|
|
func NewWencaiTool() *WencaiTool {
|
|
return newWencaiTool(wencaiParams{})
|
|
}
|
|
|
|
func newWencaiTool(defaults wencaiParams) *WencaiTool {
|
|
if defaults.TopN == 0 {
|
|
defaults.TopN = defaultWencaiTopN
|
|
}
|
|
if strings.TrimSpace(defaults.QueryType) == "" {
|
|
defaults.QueryType = defaultWencaiQueryType
|
|
}
|
|
return &WencaiTool{defaults: defaults}
|
|
}
|
|
|
|
// Info exposes only Python meta.parameters. Node configuration does not
|
|
// belong in the model-emitted function-call schema.
|
|
func (w *WencaiTool) Info(_ context.Context) (*schema.ToolInfo, error) {
|
|
return &schema.ToolInfo{
|
|
Name: wencaiToolName,
|
|
Desc: strings.TrimSpace(wencaiToolDescription),
|
|
ParamsOneOf: schema.NewParamsOneOfByParams(map[string]*schema.ParameterInfo{
|
|
"query": {
|
|
Type: schema.String,
|
|
Desc: "The question/conditions to select stocks.",
|
|
Required: true,
|
|
},
|
|
}),
|
|
}, nil
|
|
}
|
|
|
|
// InvokableRun matches the current Python invocation result: valid arguments
|
|
// produce an empty report and no error because the upstream call is disabled.
|
|
func (w *WencaiTool) InvokableRun(ctx context.Context, argsJSON string, _ ...tool.Option) (string, error) {
|
|
select {
|
|
case <-ctx.Done():
|
|
err := ctx.Err()
|
|
return wencaiErrJSON(err), err
|
|
default:
|
|
}
|
|
|
|
params := w.defaults
|
|
if strings.TrimSpace(argsJSON) != "" {
|
|
var runtimeParams wencaiParams
|
|
if err := json.Unmarshal([]byte(argsJSON), &runtimeParams); err != nil {
|
|
err = fmt.Errorf("wencai: parse arguments: %w", err)
|
|
return wencaiErrJSON(err), err
|
|
}
|
|
params = mergeWencaiParams(params, runtimeParams)
|
|
}
|
|
_ = params
|
|
return wencaiJSON(wencaiEnvelope{Report: ""}), nil
|
|
}
|
|
|
|
func mergeWencaiParams(defaults, params wencaiParams) wencaiParams {
|
|
if params.Query == "" {
|
|
params.Query = defaults.Query
|
|
}
|
|
if params.TopN == 0 {
|
|
params.TopN = defaults.TopN
|
|
}
|
|
if strings.TrimSpace(params.QueryType) == "" {
|
|
params.QueryType = defaults.QueryType
|
|
}
|
|
return params
|
|
}
|
|
|
|
// ComponentSpec returns the Python-compatible WenCai Canvas surface.
|
|
func (w *WencaiTool) ComponentSpec() ComponentSpec {
|
|
return ComponentSpec{
|
|
Inputs: map[string]string{
|
|
"query": "The question/conditions to select stocks.",
|
|
},
|
|
Outputs: map[string]string{
|
|
"report": "WenCai query report.",
|
|
},
|
|
InputForm: map[string]any{
|
|
"query": map[string]any{
|
|
"name": "Query",
|
|
"type": "line",
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
// BuildComponentOutputs converts WenCai's complete tool envelope into its
|
|
// public Canvas outputs.
|
|
func (w *WencaiTool) BuildComponentOutputs(envelope map[string]any) map[string]any {
|
|
report, _ := envelope["report"].(string)
|
|
return map[string]any{"report": report}
|
|
}
|
|
|
|
func isWencaiQueryTypeSupported(queryType string) bool {
|
|
_, ok := wencaiQueryTypes[queryType]
|
|
return ok
|
|
}
|
|
|
|
func wencaiJSON(env wencaiEnvelope) string {
|
|
b, err := json.Marshal(env)
|
|
if err != nil {
|
|
return fmt.Sprintf(`{"_ERROR":"wencai: marshal result: %s"}`, err)
|
|
}
|
|
return string(b)
|
|
}
|
|
|
|
func wencaiErrJSON(err error) string {
|
|
return wencaiJSON(wencaiEnvelope{Error: err.Error()})
|
|
}
|