Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConfigureRegistry ¶
func SchedulerMaxConcurrentRunsFromEnv ¶ added in v0.3.25
func SchedulerMaxConcurrentRunsFromEnv() int
SchedulerMaxConcurrentRunsFromEnv reads AGENTLY_SCHEDULER_MAX_CONCURRENT_RUNS and returns the configured cap, or 0 (unbounded) when unset / invalid / non-positive. Serve threads the value into the scheduler service so a burst of due schedules cannot explode into thousands of parallel goroutines.
func SchedulerOptionsFromEnv ¶
func SchedulerOptionsFromEnv() *sdk.SchedulerOptions
Types ¶
type EmbedderFinder ¶
type EmbedderFinder struct {
// contains filtered or unexported fields
}
EmbedderFinder resolves workspace embedder configs to runtime embedder clients. This mirrors modelFinder behavior and keeps plugin wiring in agently-app.
func NewEmbedderFinder ¶
func NewEmbedderFinder(loader provider.ConfigLoader) *EmbedderFinder
func (*EmbedderFinder) Ids ¶
func (f *EmbedderFinder) Ids() []string
type ModelFinder ¶
type ModelFinder struct {
// contains filtered or unexported fields
}
ModelFinder is a minimal llm.Finder implementation owned by agently-app. It intentionally avoids agently-core internal packages while supporting runtime model resolution from workspace loader configs.
func NewModelFinder ¶
func NewModelFinder(loader provider.ConfigLoader) *ModelFinder