The tracker-mapping, common-pattern enrichment, and third-party disambiguation agents were all built from one shared TrackerAgentsConfig fed by a single tracker-mapping config slot. That forced a single AgentTimeout to be reused and patched per worker, and two unrelated max-turns fields to share one struct. Split the in-code config into TrackerMappingAgentConfig, TrackerEnrichmentAgentConfig, and DisambiguationAgentConfig, each with its own timeout and max-turns, and add dedicated tracker-enrichment and third-party-disambiguation provider slots (the latter resolving next to third-party-vetter). Enrichment and disambiguation fall back to the tracker-mapping slot when their own provider is unset, preserving single-config deployments. Drop the shared pkg/agentsbuild package and duplicate its small wiring into probod and proboctl so the two executables stay decoupled. Wire the new env vars, builder test coverage, and Helm values. Signed-off-by: Émile Ré <emile@probo.com>
58 lines
2.1 KiB
Go
58 lines
2.1 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
// REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
// AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
// INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
// LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
// OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
// PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
package cookiebanner
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.probo.inc/probo/pkg/llm"
|
|
)
|
|
|
|
// TrackerMappingAgentConfig configures the tracker-mapping agent
|
|
// (catalog identification). It uses DB-backed search tools and may also
|
|
// use Firecrawl for web search when an API key is supplied.
|
|
//
|
|
// MaxTokens and Temperature bound and steer the LLM call (the output is
|
|
// tiny structured JSON). Timeout caps a single agent run and MaxTurns
|
|
// bounds the agent reasoning loop. Zero-valued tuning fields fall back
|
|
// to package defaults.
|
|
type TrackerMappingAgentConfig struct {
|
|
LLMClient *llm.Client
|
|
Model string
|
|
FirecrawlAPIKey string
|
|
MaxTokens *int
|
|
Temperature *float64
|
|
Timeout time.Duration
|
|
MaxTurns int
|
|
}
|
|
|
|
// TrackerEnrichmentAgentConfig configures the common-pattern enrichment
|
|
// agent (description research). It uses DB-backed search tools and may
|
|
// also use Firecrawl for web search when an API key is supplied.
|
|
//
|
|
// MaxTokens and Temperature bound and steer the LLM call (the output is
|
|
// tiny structured JSON). Timeout caps a single agent run and MaxTurns
|
|
// bounds the agent reasoning loop. Zero-valued tuning fields fall back
|
|
// to package defaults.
|
|
type TrackerEnrichmentAgentConfig struct {
|
|
LLMClient *llm.Client
|
|
Model string
|
|
FirecrawlAPIKey string
|
|
MaxTokens *int
|
|
Temperature *float64
|
|
Timeout time.Duration
|
|
MaxTurns int
|
|
}
|