cmd

package
v0.0.142 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 23, 2026 License: MIT Imports: 25 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Execute

func Execute()

Types

type ChartNode added in v0.0.90

type ChartNode struct {
	Name        string
	Model       string
	Action      string
	Input       []string
	Output      []string
	IsParallel  bool
	ParallelID  string
	StepType    string // "standard", "generate", "process", "openai-responses"
	IsValid     bool
	InvalidMsg  string
	DependsOn   []string // Names of steps this depends on
	ProducesFor []string // Names of steps that depend on this
}

ChartNode represents a step in the workflow visualization

type OllamaModel

type OllamaModel struct {
	Name    string `json:"name"`
	ModTime string `json:"modified_at"`
	Size    int64  `json:"size"`
}

type VLLMModel added in v0.0.71

type VLLMModel struct {
	ID      string `json:"id"`
	Object  string `json:"object"`
	Created int64  `json:"created"`
	OwnedBy string `json:"owned_by"`
}

VLLMModel represents a model from vLLM server

type WorkflowChart added in v0.0.90

type WorkflowChart struct {
	Nodes           []ChartNode
	ParallelGroups  map[string][]ChartNode
	AgenticLoopCfgs map[string]*processor.AgenticLoopConfig // standalone agentic-loop blocks
	DeferredSteps   []ChartNode
	EntryInputs     []string
	FinalOutputs    []string
	SequentialOrder []string
	HasStdinEntry   bool
	HasToolInputs   bool
	HasErrors       bool
	Errors          []string
}

WorkflowChart contains the parsed workflow structure for visualization

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL