Documentation
¶
Overview ¶
Package cmd implements the command-line interface for AGK.
Package cmd implements the command-line interface for AGK.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Set via ldflags during build Version = "dev" GitCommit = "unknown" BuildDate = "unknown" GoVersion = runtime.Version() )
Functions ¶
Types ¶
type RunStats ¶
type Span ¶
type Span struct {
Name string `json:"Name"`
StartTime string `json:"StartTime"`
EndTime string `json:"EndTime"`
Attributes []map[string]interface{} `json:"Attributes,omitempty"`
ParentSpanID string `json:"ParentSpanId,omitempty"`
SpanID string `json:"SpanId"`
SpanKind int `json:"SpanKind"`
Status map[string]interface{} `json:"Status"`
ChildSpanCount int `json:"ChildSpanCount"`
InstrumentationScope map[string]interface{} `json:"InstrumentationScope"`
}
type TraceRun ¶
type TraceRun struct {
RunID string `json:"run_id"`
Command string `json:"command"`
Status string `json:"status"`
StartTime time.Time `json:"start_time"`
EndTime time.Time `json:"end_time"`
Duration float64 `json:"duration_seconds"`
SpanCount int `json:"span_count"`
LLMCalls int `json:"llm_calls"`
TotalTokens int `json:"total_tokens"`
EstimatedCost float64 `json:"estimated_cost"`
}
TraceRun represents a stored trace run
Click to show internal directories.
Click to hide internal directories.