You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.4 KiB
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
* Copyright 2025 CloudWeGo Authors
*
* 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 eino
import (
"context"
"github.com/RanFeng/ilog"
"github.com/cloudwego/eino/compose"
"github.com/cloudwego/eino-examples/flow/agent/deer-go/biz/consts"
"github.com/cloudwego/eino-examples/flow/agent/deer-go/biz/model"
)
// type I = string
// type O = string
// 子图流转函数由上一个子图决定接下来流转到哪个agent
// 并将其name写入 state.Goto ,该函数读取 state.Goto 并将控制权交给对应agent
func agentHandOff(ctx context.Context, input string) (next string, err error) {
defer func() {
ilog.EventInfo(ctx, "agent_hand_off", "input", input, "next", next)
}()
_ = compose.ProcessState[*model.State](ctx, func(_ context.Context, state *model.State) error {
next = state.Goto
return nil
})
return next, nil
}
// Builder 初始化全部子图并连接
func Builder[I, O, S any](ctx context.Context, genFunc compose.GenLocalState[S]) compose.Runnable[I, O] {
//tools := map[string]Tool{}
//for _, cli := range llms.MCPServer {
// ts, err := mcp.GetTools(ctx, &mcp.Config{Cli: cli})
// if err != nil {
// ilog.EventError(ctx, err, "builder_error")
// }
// for _, t := range ts {
// v := Tool{}
// v.Schema, err = t.Info(ctx)
// v.CallAble = t.(tool.InvokableTool)
// tools[v.Schema.Name] = v
// }
//}
//ilog.EventInfo(ctx, "builder", "tools", tools)
g := compose.NewGraph[I, O](
compose.WithGenLocalState(genFunc),
)
outMap := map[string]bool{
consts.Coordinator: true,
consts.Planner: true,
consts.Reporter: true,
consts.ResearchTeam: true,
consts.Researcher: true,
consts.Coder: true,
consts.BackgroundInvestigator: true,
consts.Human: true,
compose.END: true,
}
coordinatorGraph := NewCAgent[I, O](ctx)
plannerGraph := NewPlanner[I, O](ctx)
reporterGraph := NewReporter[I, O](ctx)
researchTeamGraph := NewResearchTeamNode[I, O](ctx)
researcherGraph := NewResearcher[I, O](ctx)
bIGraph := NewBAgent[I, O](ctx)
coder := NewCoder[I, O](ctx)
human := NewHumanNode[I, O](ctx)
_ = g.AddGraphNode(consts.Coordinator, coordinatorGraph, compose.WithNodeName(consts.Coordinator))
_ = g.AddGraphNode(consts.Planner, plannerGraph, compose.WithNodeName(consts.Planner))
_ = g.AddGraphNode(consts.Reporter, reporterGraph, compose.WithNodeName(consts.Reporter))
_ = g.AddGraphNode(consts.ResearchTeam, researchTeamGraph, compose.WithNodeName(consts.ResearchTeam))
_ = g.AddGraphNode(consts.Researcher, researcherGraph, compose.WithNodeName(consts.Researcher))
_ = g.AddGraphNode(consts.Coder, coder, compose.WithNodeName(consts.Coder))
_ = g.AddGraphNode(consts.BackgroundInvestigator, bIGraph, compose.WithNodeName(consts.BackgroundInvestigator))
_ = g.AddGraphNode(consts.Human, human, compose.WithNodeName(consts.Human))
_ = g.AddBranch(consts.Coordinator, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.Planner, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.Reporter, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.ResearchTeam, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.Researcher, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.Coder, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.BackgroundInvestigator, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddBranch(consts.Human, compose.NewGraphBranch(agentHandOff, outMap))
_ = g.AddEdge(compose.START, consts.Coordinator)
r, err := g.Compile(ctx,
compose.WithGraphName("EinoDeer"),
compose.WithNodeTriggerMode(compose.AnyPredecessor),
compose.WithCheckPointStore(model.NewDeerCheckPoint(ctx)), // 指定Graph CheckPointStore
)
if err != nil {
ilog.EventError(ctx, err, "compile failed")
}
return r
}