Documentation
¶
Index ¶
- type A2ATaskManagementShortcut
- func (t *A2ATaskManagementShortcut) CanExecute(args []string) bool
- func (t *A2ATaskManagementShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
- func (t *A2ATaskManagementShortcut) GetDescription() string
- func (t *A2ATaskManagementShortcut) GetName() string
- func (t *A2ATaskManagementShortcut) GetUsage() string
- type AgentsConfigService
- type ClearShortcut
- type CompactShortcut
- type ConfigShortcut
- type ContextShortcut
- type ConversationMetadata
- type ConversationSelectShortcut
- func (c *ConversationSelectShortcut) CanExecute(args []string) bool
- func (c *ConversationSelectShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
- func (c *ConversationSelectShortcut) GetDescription() string
- func (c *ConversationSelectShortcut) GetName() string
- func (c *ConversationSelectShortcut) GetUsage() string
- type ConversationSummary
- type CostShortcut
- type CustomShortcut
- func (c *CustomShortcut) CanExecute(args []string) bool
- func (c *CustomShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
- func (c *CustomShortcut) GenerateSnippet(ctx context.Context, dataMap map[string]string) (string, error)
- func (c *CustomShortcut) GetDescription() string
- func (c *CustomShortcut) GetName() string
- func (c *CustomShortcut) GetUsage() string
- type CustomShortcutConfig
- type CustomShortcutsConfig
- type ExitShortcut
- type HelpShortcut
- type InitGithubActionShortcut
- func (g *InitGithubActionShortcut) CanExecute(args []string) bool
- func (g *InitGithubActionShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
- func (g *InitGithubActionShortcut) GetDescription() string
- func (g *InitGithubActionShortcut) GetName() string
- func (g *InitGithubActionShortcut) GetUsage() string
- type InitShortcut
- type ModelShortcut
- type ModelSwitchData
- type NewShortcut
- type PersistentConversationRepository
- type Registry
- func (r *Registry) Execute(ctx context.Context, name string, args []string) (ShortcutResult, error)
- func (r *Registry) Get(name string) (Shortcut, bool)
- func (r *Registry) GetAll() []Shortcut
- func (r *Registry) GetShortcuts() map[string]string
- func (r *Registry) GetShortcutsStartingWith(prefix string) []string
- func (r *Registry) List() []string
- func (r *Registry) LoadCustomShortcuts(baseDir string, client sdk.Client, modelService domain.ModelService, ...) error
- func (r *Registry) ParseShortcut(input string) (string, []string, error)
- func (r *Registry) Register(shortcut Shortcut)
- func (r *Registry) Unregister(name string)
- type Shortcut
- type ShortcutResult
- type SideEffectType
- type SnippetConfig
- type SwitchShortcut
- type ThemeShortcut
- type TokenStats
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type A2ATaskManagementShortcut ¶ added in v0.53.3
type A2ATaskManagementShortcut struct {
// contains filtered or unexported fields
}
A2ATaskManagementShortcut shows the A2A task management dropdown
func NewA2ATaskManagementShortcut ¶ added in v0.53.3
func NewA2ATaskManagementShortcut(configService *config.Config) *A2ATaskManagementShortcut
NewA2ATaskManagementShortcut creates a new A2A task management shortcut
func (*A2ATaskManagementShortcut) CanExecute ¶ added in v0.53.3
func (t *A2ATaskManagementShortcut) CanExecute(args []string) bool
func (*A2ATaskManagementShortcut) Execute ¶ added in v0.53.3
func (t *A2ATaskManagementShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*A2ATaskManagementShortcut) GetDescription ¶ added in v0.53.3
func (t *A2ATaskManagementShortcut) GetDescription() string
func (*A2ATaskManagementShortcut) GetName ¶ added in v0.53.3
func (t *A2ATaskManagementShortcut) GetName() string
func (*A2ATaskManagementShortcut) GetUsage ¶ added in v0.53.3
func (t *A2ATaskManagementShortcut) GetUsage() string
type AgentsConfigService ¶ added in v0.67.0
type AgentsConfigService interface {
AddAgent(agent config.AgentEntry) error
UpdateAgent(agent config.AgentEntry) error
RemoveAgent(name string) error
ListAgents() ([]config.AgentEntry, error)
GetAgent(name string) (*config.AgentEntry, error)
GetAgentURLs() ([]string, error)
}
AgentsConfigService interface for managing agent configurations
type ClearShortcut ¶
type ClearShortcut struct {
// contains filtered or unexported fields
}
ClearShortcut clears the conversation history
func NewClearShortcut ¶
func NewClearShortcut(repo domain.ConversationRepository, taskTracker domain.TaskTracker) *ClearShortcut
func (*ClearShortcut) CanExecute ¶
func (c *ClearShortcut) CanExecute(args []string) bool
func (*ClearShortcut) Execute ¶
func (c *ClearShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ClearShortcut) GetDescription ¶
func (c *ClearShortcut) GetDescription() string
func (*ClearShortcut) GetName ¶
func (c *ClearShortcut) GetName() string
func (*ClearShortcut) GetUsage ¶
func (c *ClearShortcut) GetUsage() string
type CompactShortcut ¶ added in v0.63.0
type CompactShortcut struct {
// contains filtered or unexported fields
}
CompactShortcut runs conversation optimization to reduce token usage
func NewCompactShortcut ¶ added in v0.63.0
func NewCompactShortcut(repo domain.ConversationRepository) *CompactShortcut
func (*CompactShortcut) CanExecute ¶ added in v0.63.0
func (c *CompactShortcut) CanExecute(args []string) bool
func (*CompactShortcut) Execute ¶ added in v0.63.0
func (c *CompactShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*CompactShortcut) GetDescription ¶ added in v0.63.0
func (c *CompactShortcut) GetDescription() string
func (*CompactShortcut) GetName ¶ added in v0.63.0
func (c *CompactShortcut) GetName() string
func (*CompactShortcut) GetUsage ¶ added in v0.63.0
func (c *CompactShortcut) GetUsage() string
type ConfigShortcut ¶
type ConfigShortcut struct {
// contains filtered or unexported fields
}
ConfigShortcut allows runtime configuration management
func NewConfigShortcut ¶
func NewConfigShortcut(cfg *config.Config, reloadFunc func() (*config.Config, error), configService interface { SetValue(key, value string) error }, modelService interface { GetCurrentModel() string }) *ConfigShortcut
NewConfigShortcut creates a new config shortcut
func (*ConfigShortcut) CanExecute ¶
func (c *ConfigShortcut) CanExecute(args []string) bool
func (*ConfigShortcut) Execute ¶
func (c *ConfigShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ConfigShortcut) GetDescription ¶
func (c *ConfigShortcut) GetDescription() string
func (*ConfigShortcut) GetName ¶
func (c *ConfigShortcut) GetName() string
func (*ConfigShortcut) GetUsage ¶
func (c *ConfigShortcut) GetUsage() string
type ContextShortcut ¶ added in v0.63.0
type ContextShortcut struct {
// contains filtered or unexported fields
}
ContextShortcut shows context window usage information
func NewContextShortcut ¶ added in v0.63.0
func NewContextShortcut(repo domain.ConversationRepository, modelService domain.ModelService) *ContextShortcut
func (*ContextShortcut) CanExecute ¶ added in v0.63.0
func (c *ContextShortcut) CanExecute(args []string) bool
func (*ContextShortcut) Execute ¶ added in v0.63.0
func (c *ContextShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ContextShortcut) GetDescription ¶ added in v0.63.0
func (c *ContextShortcut) GetDescription() string
func (*ContextShortcut) GetName ¶ added in v0.63.0
func (c *ContextShortcut) GetName() string
func (*ContextShortcut) GetUsage ¶ added in v0.63.0
func (c *ContextShortcut) GetUsage() string
type ConversationMetadata ¶ added in v0.45.0
type ConversationMetadata struct {
ID string
Title string
CreatedAt string
UpdatedAt string
MessageCount int
TokenStats TokenStats
CostStats domain.SessionCostStats
Model string
Tags []string
Summary string
}
ConversationMetadata represents conversation metadata
type ConversationSelectShortcut ¶ added in v0.45.0
type ConversationSelectShortcut struct {
// contains filtered or unexported fields
}
ConversationSelectShortcut shows the conversation selection dropdown
func NewConversationSelectShortcut ¶ added in v0.45.0
func NewConversationSelectShortcut(repo PersistentConversationRepository) *ConversationSelectShortcut
NewConversationSelectShortcut creates a new conversation select shortcut
func (*ConversationSelectShortcut) CanExecute ¶ added in v0.45.0
func (c *ConversationSelectShortcut) CanExecute(args []string) bool
func (*ConversationSelectShortcut) Execute ¶ added in v0.45.0
func (c *ConversationSelectShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ConversationSelectShortcut) GetDescription ¶ added in v0.45.0
func (c *ConversationSelectShortcut) GetDescription() string
func (*ConversationSelectShortcut) GetName ¶ added in v0.45.0
func (c *ConversationSelectShortcut) GetName() string
func (*ConversationSelectShortcut) GetUsage ¶ added in v0.45.0
func (c *ConversationSelectShortcut) GetUsage() string
type ConversationSummary ¶ added in v0.45.0
type ConversationSummary struct {
ID string
Title string
CreatedAt string
UpdatedAt string
MessageCount int
TokenStats TokenStats
CostStats domain.SessionCostStats
Model string
Tags []string
Summary string
}
ConversationSummary represents a saved conversation summary
type CostShortcut ¶ added in v0.86.0
type CostShortcut struct {
// contains filtered or unexported fields
}
CostShortcut displays cost information for the current session
func NewCostShortcut ¶ added in v0.86.0
func NewCostShortcut(repo domain.ConversationRepository) *CostShortcut
func (*CostShortcut) CanExecute ¶ added in v0.86.0
func (c *CostShortcut) CanExecute(args []string) bool
func (*CostShortcut) Execute ¶ added in v0.86.0
func (c *CostShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*CostShortcut) GetDescription ¶ added in v0.86.0
func (c *CostShortcut) GetDescription() string
func (*CostShortcut) GetName ¶ added in v0.86.0
func (c *CostShortcut) GetName() string
func (*CostShortcut) GetUsage ¶ added in v0.86.0
func (c *CostShortcut) GetUsage() string
type CustomShortcut ¶ added in v0.44.0
type CustomShortcut struct {
// contains filtered or unexported fields
}
CustomShortcut implements the Shortcut interface for user-defined shortcuts
func NewCustomShortcut ¶ added in v0.44.0
func NewCustomShortcut(config CustomShortcutConfig, client sdk.Client, modelService domain.ModelService, imageService domain.ImageService, toolService domain.ToolService) *CustomShortcut
NewCustomShortcut creates a new custom shortcut from configuration
func (*CustomShortcut) CanExecute ¶ added in v0.44.0
func (c *CustomShortcut) CanExecute(args []string) bool
func (*CustomShortcut) Execute ¶ added in v0.44.0
func (c *CustomShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*CustomShortcut) GenerateSnippet ¶ added in v0.70.0
func (c *CustomShortcut) GenerateSnippet(ctx context.Context, dataMap map[string]string) (string, error)
GenerateSnippet generates the final snippet by calling LLM (called async from handler)
func (*CustomShortcut) GetDescription ¶ added in v0.44.0
func (c *CustomShortcut) GetDescription() string
func (*CustomShortcut) GetName ¶ added in v0.44.0
func (c *CustomShortcut) GetName() string
func (*CustomShortcut) GetUsage ¶ added in v0.44.0
func (c *CustomShortcut) GetUsage() string
type CustomShortcutConfig ¶ added in v0.44.0
type CustomShortcutConfig struct {
Name string `yaml:"name"`
Description string `yaml:"description"`
Command string `yaml:"command,omitempty"`
Args []string `yaml:"args,omitempty"`
WorkingDir string `yaml:"working_dir,omitempty"`
Tool string `yaml:"tool,omitempty"`
ToolArgs map[string]any `yaml:"tool_args,omitempty"`
Snippet *SnippetConfig `yaml:"snippet,omitempty"`
PassSessionID bool `yaml:"pass_session_id,omitempty"`
}
CustomShortcutConfig represents a user-defined shortcut configuration
type CustomShortcutsConfig ¶ added in v0.44.0
type CustomShortcutsConfig struct {
Shortcuts []CustomShortcutConfig `yaml:"shortcuts"`
}
CustomShortcutsConfig represents the structure of a custom shortcuts YAML file
type ExitShortcut ¶
type ExitShortcut struct{}
ExitShortcut exits the application
func NewExitShortcut ¶
func NewExitShortcut() *ExitShortcut
func (*ExitShortcut) CanExecute ¶
func (c *ExitShortcut) CanExecute(args []string) bool
func (*ExitShortcut) Execute ¶
func (c *ExitShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ExitShortcut) GetDescription ¶
func (c *ExitShortcut) GetDescription() string
func (*ExitShortcut) GetName ¶
func (c *ExitShortcut) GetName() string
func (*ExitShortcut) GetUsage ¶
func (c *ExitShortcut) GetUsage() string
type HelpShortcut ¶
type HelpShortcut struct {
// contains filtered or unexported fields
}
HelpShortcut shows available shortcuts
func NewHelpShortcut ¶
func NewHelpShortcut(registry *Registry) *HelpShortcut
func (*HelpShortcut) CanExecute ¶
func (c *HelpShortcut) CanExecute(args []string) bool
func (*HelpShortcut) Execute ¶
func (c *HelpShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*HelpShortcut) GetDescription ¶
func (c *HelpShortcut) GetDescription() string
func (*HelpShortcut) GetName ¶
func (c *HelpShortcut) GetName() string
func (*HelpShortcut) GetUsage ¶
func (c *HelpShortcut) GetUsage() string
type InitGithubActionShortcut ¶ added in v0.69.19
type InitGithubActionShortcut struct{}
InitGithubActionShortcut helps setup Init GitHub Action for infer-action
func NewInitGithubActionShortcut ¶ added in v0.69.19
func NewInitGithubActionShortcut() *InitGithubActionShortcut
NewInitGithubActionShortcut creates a new Init GitHub Action setup shortcut
func (*InitGithubActionShortcut) CanExecute ¶ added in v0.69.19
func (g *InitGithubActionShortcut) CanExecute(args []string) bool
func (*InitGithubActionShortcut) Execute ¶ added in v0.69.19
func (g *InitGithubActionShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*InitGithubActionShortcut) GetDescription ¶ added in v0.69.19
func (g *InitGithubActionShortcut) GetDescription() string
func (*InitGithubActionShortcut) GetName ¶ added in v0.69.19
func (g *InitGithubActionShortcut) GetName() string
func (*InitGithubActionShortcut) GetUsage ¶ added in v0.69.19
func (g *InitGithubActionShortcut) GetUsage() string
type InitShortcut ¶ added in v0.59.0
type InitShortcut struct {
// contains filtered or unexported fields
}
InitShortcut sets the input field with a configurable prompt for project initialization
func NewInitShortcut ¶ added in v0.59.0
func NewInitShortcut(cfg *config.Config) *InitShortcut
NewInitShortcut creates a new init shortcut
func (*InitShortcut) CanExecute ¶ added in v0.59.0
func (c *InitShortcut) CanExecute(args []string) bool
func (*InitShortcut) Execute ¶ added in v0.59.0
func (c *InitShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*InitShortcut) GetDescription ¶ added in v0.59.0
func (c *InitShortcut) GetDescription() string
func (*InitShortcut) GetName ¶ added in v0.59.0
func (c *InitShortcut) GetName() string
func (*InitShortcut) GetUsage ¶ added in v0.59.0
func (c *InitShortcut) GetUsage() string
type ModelShortcut ¶ added in v0.89.0
type ModelShortcut struct {
// contains filtered or unexported fields
}
ModelShortcut executes a prompt with a temporary model switch
func NewModelShortcut ¶ added in v0.89.0
func NewModelShortcut(modelService domain.ModelService) *ModelShortcut
NewModelShortcut creates a new ModelShortcut instance
func (*ModelShortcut) CanExecute ¶ added in v0.89.0
func (m *ModelShortcut) CanExecute(args []string) bool
func (*ModelShortcut) Execute ¶ added in v0.89.0
func (m *ModelShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ModelShortcut) GetDescription ¶ added in v0.89.0
func (m *ModelShortcut) GetDescription() string
func (*ModelShortcut) GetName ¶ added in v0.89.0
func (m *ModelShortcut) GetName() string
func (*ModelShortcut) GetUsage ¶ added in v0.89.0
func (m *ModelShortcut) GetUsage() string
type ModelSwitchData ¶ added in v0.89.0
ModelSwitchData contains data for temporary model switching
type NewShortcut ¶ added in v0.46.0
type NewShortcut struct {
// contains filtered or unexported fields
}
NewShortcut starts a new conversation
func NewNewShortcut ¶ added in v0.46.0
func NewNewShortcut(repo PersistentConversationRepository, taskTracker domain.TaskTracker) *NewShortcut
func (*NewShortcut) CanExecute ¶ added in v0.46.0
func (c *NewShortcut) CanExecute(args []string) bool
func (*NewShortcut) Execute ¶ added in v0.46.0
func (c *NewShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*NewShortcut) GetDescription ¶ added in v0.46.0
func (c *NewShortcut) GetDescription() string
func (*NewShortcut) GetName ¶ added in v0.46.0
func (c *NewShortcut) GetName() string
func (*NewShortcut) GetUsage ¶ added in v0.46.0
func (c *NewShortcut) GetUsage() string
type PersistentConversationRepository ¶ added in v0.45.0
type PersistentConversationRepository interface {
ListSavedConversations(ctx context.Context, limit, offset int) ([]ConversationSummary, error)
LoadConversation(ctx context.Context, conversationID string) error
GetCurrentConversationMetadata() ConversationMetadata
SaveConversation(ctx context.Context) error
StartNewConversation(title string) error
GetCurrentConversationID() string
SetConversationTitle(title string)
DeleteSavedConversation(ctx context.Context, conversationID string) error
}
PersistentConversationRepository interface for conversation persistence
type Registry ¶
type Registry struct {
// contains filtered or unexported fields
}
Registry manages all available shortcuts
func (*Registry) GetShortcuts ¶
GetShortcuts returns a map of shortcut names to descriptions
func (*Registry) GetShortcutsStartingWith ¶
GetShortcutsStartingWith returns shortcuts that start with the given prefix
func (*Registry) LoadCustomShortcuts ¶ added in v0.44.0
func (r *Registry) LoadCustomShortcuts(baseDir string, client sdk.Client, modelService domain.ModelService, imageService domain.ImageService, toolService domain.ToolService) error
LoadCustomShortcuts loads user-defined shortcuts from the specified base directory
func (*Registry) ParseShortcut ¶
ParseShortcut parses a shortcut line input into shortcut name and arguments Handles quoted strings properly
func (*Registry) Unregister ¶
Unregister removes a shortcut from the registry
type Shortcut ¶
type Shortcut interface {
GetName() string
GetDescription() string
GetUsage() string
Execute(ctx context.Context, args []string) (ShortcutResult, error)
CanExecute(args []string) bool
}
Shortcut interface represents a chat shortcut that can be executed
func LoadCustomShortcuts ¶ added in v0.44.0
func LoadCustomShortcuts(baseDir string, client sdk.Client, modelService domain.ModelService, imageService domain.ImageService, toolService domain.ToolService) ([]Shortcut, error)
LoadCustomShortcuts loads user-defined shortcuts from shortcuts/ directory within the specified base directory
type ShortcutResult ¶
type ShortcutResult struct {
Output string
Success bool
SideEffect SideEffectType
Data any
}
ShortcutResult represents the result of a shortcut execution
type SideEffectType ¶
type SideEffectType int
SideEffectType defines the types of side effects a shortcut can have
const ( SideEffectNone SideEffectType = iota SideEffectClearConversation SideEffectExit SideEffectSwitchModel SideEffectSwitchTheme SideEffectShowHelp SideEffectReloadConfig SideEffectSaveConversation SideEffectShowConversationSelection SideEffectStartNewConversation SideEffectShowA2ATaskManagement SideEffectSetInput SideEffectGenerateSnippet SideEffectCompactConversation SideEffectShowInitGithubActionSetup SideEffectEmbedImages SideEffectSendMessageWithModel )
type SnippetConfig ¶ added in v0.70.0
SnippetConfig represents the snippet generation configuration
type SwitchShortcut ¶
type SwitchShortcut struct {
// contains filtered or unexported fields
}
SwitchShortcut switches the active model
func NewSwitchShortcut ¶
func NewSwitchShortcut(modelService domain.ModelService) *SwitchShortcut
func (*SwitchShortcut) CanExecute ¶
func (c *SwitchShortcut) CanExecute(args []string) bool
func (*SwitchShortcut) Execute ¶
func (c *SwitchShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*SwitchShortcut) GetDescription ¶
func (c *SwitchShortcut) GetDescription() string
func (*SwitchShortcut) GetName ¶
func (c *SwitchShortcut) GetName() string
func (*SwitchShortcut) GetUsage ¶
func (c *SwitchShortcut) GetUsage() string
type ThemeShortcut ¶ added in v0.47.0
type ThemeShortcut struct {
// contains filtered or unexported fields
}
ThemeShortcut switches the active theme
func NewThemeShortcut ¶ added in v0.47.0
func NewThemeShortcut(themeService domain.ThemeService) *ThemeShortcut
func (*ThemeShortcut) CanExecute ¶ added in v0.47.0
func (c *ThemeShortcut) CanExecute(args []string) bool
func (*ThemeShortcut) Execute ¶ added in v0.47.0
func (c *ThemeShortcut) Execute(ctx context.Context, args []string) (ShortcutResult, error)
func (*ThemeShortcut) GetDescription ¶ added in v0.47.0
func (c *ThemeShortcut) GetDescription() string
func (*ThemeShortcut) GetName ¶ added in v0.47.0
func (c *ThemeShortcut) GetName() string
func (*ThemeShortcut) GetUsage ¶ added in v0.47.0
func (c *ThemeShortcut) GetUsage() string