Documentation
¶
Index ¶
- type ChatApplication
- func (app *ChatApplication) GetAgentService() domain.AgentService
- func (app *ChatApplication) GetAutocomplete() ui.AutocompleteComponent
- func (app *ChatApplication) GetConfig() *config.Config
- func (app *ChatApplication) GetConversationRepository() domain.ConversationRepository
- func (app *ChatApplication) GetConversationView() ui.ConversationRenderer
- func (app *ChatApplication) GetImageService() domain.ImageService
- func (app *ChatApplication) GetInputView() ui.InputComponent
- func (app *ChatApplication) GetMouseEnabled() bool
- func (app *ChatApplication) GetPageSize() int
- func (app *ChatApplication) GetStateManager() domain.StateManager
- func (app *ChatApplication) GetStatusView() ui.StatusComponent
- func (app *ChatApplication) Init() tea.Cmd
- func (app *ChatApplication) PrintConversationHistory()
- func (app *ChatApplication) SendMessage() tea.Cmd
- func (app *ChatApplication) SetMouseEnabled(enabled bool)
- func (app *ChatApplication) ToggleRawFormat()
- func (app *ChatApplication) ToggleToolResultExpansion()
- func (app *ChatApplication) Update(msg tea.Msg) (tea.Model, tea.Cmd)
- func (app *ChatApplication) View() string
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ChatApplication ¶
type ChatApplication struct {
// contains filtered or unexported fields
}
ChatApplication represents the main application model using state management
func NewChatApplication ¶
func NewChatApplication( models []string, defaultModel string, agentService domain.AgentService, conversationRepo domain.ConversationRepository, conversationOptimizer domain.ConversationOptimizerService, modelService domain.ModelService, configService *config.Config, toolService domain.ToolService, fileService domain.FileService, imageService domain.ImageService, pricingService domain.PricingService, shortcutRegistry *shortcuts.Registry, stateManager domain.StateManager, messageQueue domain.MessageQueue, themeService domain.ThemeService, toolRegistry *tools.Registry, mcpManager domain.MCPManager, taskRetentionService domain.TaskRetentionService, backgroundTaskService domain.BackgroundTaskService, agentManager domain.AgentManager, configPath string, versionInfo domain.VersionInfo, ) *ChatApplication
nolint: funlen // NewChatApplication creates a new chat application
func (*ChatApplication) GetAgentService ¶ added in v0.48.0
func (app *ChatApplication) GetAgentService() domain.AgentService
GetAgentService returns the agent service
func (*ChatApplication) GetAutocomplete ¶ added in v0.76.5
func (app *ChatApplication) GetAutocomplete() ui.AutocompleteComponent
GetAutocomplete returns the autocomplete component
func (*ChatApplication) GetConfig ¶ added in v0.36.0
func (app *ChatApplication) GetConfig() *config.Config
GetConfig returns the configuration for keybinding context
func (*ChatApplication) GetConversationRepository ¶ added in v0.36.0
func (app *ChatApplication) GetConversationRepository() domain.ConversationRepository
GetServices returns the service container
func (*ChatApplication) GetConversationView ¶ added in v0.27.0
func (app *ChatApplication) GetConversationView() ui.ConversationRenderer
GetConversationView returns the conversation view
func (*ChatApplication) GetImageService ¶ added in v0.57.0
func (app *ChatApplication) GetImageService() domain.ImageService
GetImageService returns the image service
func (*ChatApplication) GetInputView ¶ added in v0.27.0
func (app *ChatApplication) GetInputView() ui.InputComponent
GetInputView returns the input view
func (*ChatApplication) GetMouseEnabled ¶ added in v0.76.2
func (app *ChatApplication) GetMouseEnabled() bool
GetMouseEnabled returns the current mouse mode state
func (*ChatApplication) GetPageSize ¶ added in v0.27.0
func (app *ChatApplication) GetPageSize() int
GetPageSize returns the current page size for scrolling
func (*ChatApplication) GetStateManager ¶ added in v0.27.0
func (app *ChatApplication) GetStateManager() domain.StateManager
GetStateManager returns the current state manager
func (*ChatApplication) GetStatusView ¶ added in v0.27.0
func (app *ChatApplication) GetStatusView() ui.StatusComponent
GetStatusView returns the status view
func (*ChatApplication) Init ¶
func (app *ChatApplication) Init() tea.Cmd
Init initializes the application
func (*ChatApplication) PrintConversationHistory ¶ added in v0.74.0
func (app *ChatApplication) PrintConversationHistory()
PrintConversationHistory outputs the full conversation history to stdout This is called when the application exits to preserve the chat session
func (*ChatApplication) SendMessage ¶ added in v0.27.0
func (app *ChatApplication) SendMessage() tea.Cmd
SendMessage sends the current message
func (*ChatApplication) SetMouseEnabled ¶ added in v0.76.2
func (app *ChatApplication) SetMouseEnabled(enabled bool)
SetMouseEnabled sets the mouse mode state
func (*ChatApplication) ToggleRawFormat ¶ added in v0.61.0
func (app *ChatApplication) ToggleRawFormat()
ToggleRawFormat toggles between raw and rendered markdown display
func (*ChatApplication) ToggleToolResultExpansion ¶ added in v0.27.0
func (app *ChatApplication) ToggleToolResultExpansion()
ToggleToolResultExpansion toggles tool result expansion
func (*ChatApplication) Update ¶
Update handles all application messages using the state management system
func (*ChatApplication) View ¶
func (app *ChatApplication) View() string
View renders the current application view using state management