micro--go-micro
9dae4e34b7
* docs: add 'become a sponsor' call-to-action linking to Discord Now that there are a couple of sponsors, invite more: a short CTA under the Sponsors section in the README and on the landing page, pointing to the Discord to get in touch. * fix(health): remove duplicate RegistryCheck declaration Two PRs (#2957 and #2958) each added a RegistryCheck to the health package, leaving the package uncompilable on master (RegistryCheck redeclared: health/registry.go vs health/health.go). Keep the health.go implementation — it honors the check's context timeout so a hung registry (e.g. an unreachable etcd) reports down instead of blocking the probe — and remove the duplicate registry.go and its test. registry_check_test.go already covers healthy/down/nil/timeout/not-ready. * feat(agent): pluggable memory and custom tools Make agents compose the way services do — pluggable pieces with working defaults — by adding the two abstractions an agent needs beyond the model: - Memory: a pluggable interface for conversation memory. The default is store-backed and durable across restarts (the previous hardcoded behavior, now behind an interface); supply your own with WithMemory (in-memory, database, semantic store). NewMemory / NewInMemory provided. - Custom tools: WithTool registers any function as a tool the agent can call, so agents are no longer limited to orchestrating RPC services. Both exposed at the micro package (AgentMemory, AgentTool, NewMemory, NewInMemory). Behavior-preserving refactor of the agent's history into the default Memory; tests cover persistence, in-memory, clear, custom tool dispatch and errors. README + AGENT_DESIGN document the pluggable composition (model / memory / tools / guardrails). * blog: 'Doubling Down on Agents' (#20) The vision post for making agents a first-class framework the way services were: opinionated, batteries-included, pluggable. Frames an agent as a composition of model + memory + tools + guardrails with working defaults; introduces the new pluggable memory and custom tools; makes the microagents argument (an agent for everything, distributed like microservices); and lays out the three primitives — services, agents, workflows — as one substrate, with an honest list of the gaps still to fill (knowledge/retrieval, streaming, explicit loop). --------- Co-authored-by: Claude <noreply@anthropic.com>
184 行
6.0 KiB
Go
184 行
6.0 KiB
Go
// Package micro is a pluggable framework for microservices
|
|
package micro
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go-micro.dev/v5/agent"
|
|
"go-micro.dev/v5/client"
|
|
"go-micro.dev/v5/flow"
|
|
"go-micro.dev/v5/server"
|
|
"go-micro.dev/v5/service"
|
|
"go-micro.dev/v5/store"
|
|
)
|
|
|
|
type serviceKey struct{}
|
|
|
|
// Service is the interface for a go-micro service.
|
|
type Service = service.Service
|
|
|
|
// Agent is the interface for an AI agent that manages services.
|
|
type Agent = agent.Agent
|
|
|
|
// AgentOption configures an Agent.
|
|
type AgentOption = agent.Option
|
|
|
|
// Flow is an event-driven LLM orchestration unit.
|
|
type Flow = flow.Flow
|
|
|
|
// FlowOption configures a Flow.
|
|
type FlowOption = flow.Option
|
|
|
|
// Group is a set of services that share lifecycle management.
|
|
type Group = service.Group
|
|
|
|
type Option = service.Option
|
|
|
|
type Options = service.Options
|
|
|
|
// Event is used to publish messages to a topic.
|
|
type Event interface {
|
|
// Publish publishes a message to the event topic
|
|
Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error
|
|
}
|
|
|
|
// Type alias to satisfy the deprecation.
|
|
type Publisher = Event
|
|
|
|
// New creates a new service with the given name and options.
|
|
//
|
|
// service := micro.New("greeter")
|
|
// service := micro.New("greeter", micro.Address(":8080"))
|
|
func New(name string, opts ...Option) Service {
|
|
return service.New(append([]Option{service.Name(name)}, opts...)...)
|
|
}
|
|
|
|
// NewService creates and returns a new Service based on the packages within.
|
|
// Deprecated: Use New(name, opts...) instead.
|
|
func NewService(opts ...Option) Service {
|
|
return service.New(opts...)
|
|
}
|
|
|
|
// NewAgent creates a new AI agent that manages the given services.
|
|
//
|
|
// agent := micro.NewAgent("task-mgr",
|
|
// micro.AgentServices("task"),
|
|
// micro.AgentPrompt("You manage tasks."),
|
|
// micro.AgentProvider("anthropic"),
|
|
// )
|
|
// agent.Run()
|
|
func NewAgent(name string, opts ...AgentOption) Agent {
|
|
return agent.New(append([]AgentOption{agent.Name(name)}, opts...)...)
|
|
}
|
|
|
|
// AgentServices sets which services the agent manages.
|
|
func AgentServices(names ...string) AgentOption { return agent.Services(names...) }
|
|
|
|
// AgentPrompt sets the agent's system prompt.
|
|
func AgentPrompt(p string) AgentOption { return agent.Prompt(p) }
|
|
|
|
// AgentProvider sets the LLM provider.
|
|
func AgentProvider(p string) AgentOption { return agent.Provider(p) }
|
|
|
|
// AgentModel sets the LLM model.
|
|
func AgentModel(m string) AgentOption { return agent.Model(m) }
|
|
|
|
// AgentAPIKey sets the API key for the LLM provider.
|
|
func AgentAPIKey(k string) AgentOption { return agent.APIKey(k) }
|
|
|
|
// ApproveFunc gates an agent's tool calls before they run.
|
|
type ApproveFunc = agent.ApproveFunc
|
|
|
|
// AgentMaxSteps bounds tool executions per Ask (0 = unbounded) — a
|
|
// stopping condition for autonomous agents.
|
|
func AgentMaxSteps(n int) AgentOption { return agent.MaxSteps(n) }
|
|
|
|
// AgentApproveTool sets a human-in-the-loop / policy hook called before
|
|
// each action the agent takes.
|
|
func AgentApproveTool(fn ApproveFunc) AgentOption { return agent.ApproveTool(fn) }
|
|
|
|
// Memory is an agent's pluggable conversation memory.
|
|
type Memory = agent.Memory
|
|
|
|
// ToolFunc handles a custom agent tool call.
|
|
type ToolFunc = agent.ToolFunc
|
|
|
|
// NewMemory returns the default store-backed agent memory.
|
|
func NewMemory(s store.Store, key string, limit int) Memory { return agent.NewMemory(s, key, limit) }
|
|
|
|
// NewInMemory returns non-persistent agent memory.
|
|
func NewInMemory(limit int) Memory { return agent.NewInMemory(limit) }
|
|
|
|
// AgentMemory sets the agent's conversation memory (default: store-backed).
|
|
func AgentMemory(m Memory) AgentOption { return agent.WithMemory(m) }
|
|
|
|
// AgentTool registers a custom tool the agent can call, beyond its services.
|
|
func AgentTool(name, description string, properties map[string]any, handler ToolFunc) AgentOption {
|
|
return agent.WithTool(name, description, properties, handler)
|
|
}
|
|
|
|
// NewFlow creates an event-driven LLM orchestration unit.
|
|
//
|
|
// f := micro.NewFlow("onboard-user",
|
|
// micro.FlowTrigger("events.user.created"),
|
|
// micro.FlowPrompt("New user: {{.Data}}. Send welcome email."),
|
|
// micro.FlowProvider("anthropic"),
|
|
// )
|
|
// f.Register(service.Options().Registry, service.Options().Broker, service.Client())
|
|
func NewFlow(name string, opts ...FlowOption) *Flow {
|
|
return flow.New(name, opts...)
|
|
}
|
|
|
|
// FlowTrigger sets the broker topic that triggers the flow.
|
|
func FlowTrigger(topic string) FlowOption { return flow.Trigger(topic) }
|
|
|
|
// FlowPrompt sets the prompt template. Use {{.Data}} for the event payload.
|
|
func FlowPrompt(p string) FlowOption { return flow.Prompt(p) }
|
|
|
|
// FlowProvider sets the LLM provider.
|
|
func FlowProvider(p string) FlowOption { return flow.Provider(p) }
|
|
|
|
// FlowAPIKey sets the API key for the LLM provider.
|
|
func FlowAPIKey(k string) FlowOption { return flow.APIKey(k) }
|
|
|
|
// FlowAgent makes the flow hand each event to a named agent over RPC —
|
|
// the flow triggers, the agent reasons. Without it, the flow runs a
|
|
// single LLM step itself.
|
|
func FlowAgent(name string) FlowOption { return flow.Agent(name) }
|
|
|
|
// NewGroup creates a service group for running multiple services
|
|
// in a single binary with shared lifecycle management.
|
|
func NewGroup(svcs ...Service) *Group {
|
|
return service.NewGroup(svcs...)
|
|
}
|
|
|
|
// FromContext retrieves a Service from the Context.
|
|
func FromContext(ctx context.Context) (Service, bool) {
|
|
s, ok := ctx.Value(serviceKey{}).(Service)
|
|
return s, ok
|
|
}
|
|
|
|
// NewContext returns a new Context with the Service embedded within it.
|
|
func NewContext(ctx context.Context, s Service) context.Context {
|
|
return context.WithValue(ctx, serviceKey{}, s)
|
|
}
|
|
|
|
// NewEvent creates a new event publisher.
|
|
func NewEvent(topic string, c client.Client) Event {
|
|
if c == nil {
|
|
c = client.NewClient()
|
|
}
|
|
|
|
return &event{c, topic}
|
|
}
|
|
|
|
// RegisterHandler is syntactic sugar for registering a handler.
|
|
func RegisterHandler(s server.Server, h interface{}, opts ...server.HandlerOption) error {
|
|
return s.Handle(s.NewHandler(h, opts...))
|
|
}
|
|
|
|
// RegisterSubscriber is syntactic sugar for registering a subscriber.
|
|
func RegisterSubscriber(topic string, s server.Server, h interface{}, opts ...server.SubscriberOption) error {
|
|
return s.Subscribe(s.NewSubscriber(topic, h, opts...))
|
|
}
|