Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
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 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
DeferredSteps []ChartNode
EntryInputs []string
FinalOutputs []string
SequentialOrder []string
HasStdinEntry bool
HasToolInputs bool
HasErrors bool
Errors []string
}
WorkflowChart contains the parsed workflow structure for visualization
Click to show internal directories.
Click to hide internal directories.