current state
This commit is contained in:
@@ -0,0 +1,215 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"log"
|
||||
"strings"
|
||||
|
||||
"github.com/charmbracelet/bubbles/textarea"
|
||||
"github.com/charmbracelet/bubbles/viewport"
|
||||
tea "github.com/charmbracelet/bubbletea"
|
||||
"github.com/charmbracelet/lipgloss"
|
||||
"sidekick"
|
||||
)
|
||||
|
||||
var (
|
||||
titleStyle = lipgloss.NewStyle().
|
||||
Foreground(lipgloss.Color("#FFFDF5")).
|
||||
Background(lipgloss.Color("#25A065")).
|
||||
Padding(0, 1).
|
||||
Bold(true)
|
||||
statusStyle = lipgloss.NewStyle().
|
||||
Foreground(lipgloss.Color("#FFFDF5")).
|
||||
Background(lipgloss.Color("#3C3C3C")).
|
||||
Padding(0, 1)
|
||||
viewportStyle = lipgloss.NewStyle().
|
||||
Border(lipgloss.RoundedBorder()).
|
||||
BorderForeground(lipgloss.Color("62")).
|
||||
Padding(0, 1)
|
||||
textareaStyle = lipgloss.NewStyle().
|
||||
Border(lipgloss.RoundedBorder()).
|
||||
BorderForeground(lipgloss.Color("240")).
|
||||
Padding(0, 1)
|
||||
textareaFocusStyle = lipgloss.NewStyle().
|
||||
Border(lipgloss.RoundedBorder()).
|
||||
BorderForeground(lipgloss.Color("62")).
|
||||
Padding(0, 1)
|
||||
userStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("6")).Bold(true)
|
||||
agentStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("5")).Bold(true)
|
||||
sysStyle = lipgloss.NewStyle().Foreground(lipgloss.Color("8")).Italic(true)
|
||||
)
|
||||
|
||||
type model struct {
|
||||
viewport viewport.Model
|
||||
textarea textarea.Model
|
||||
agent *sidekick.Sidekick
|
||||
pool map[string]*sidekick.Sidekick
|
||||
messages []string
|
||||
isThinking bool
|
||||
err error
|
||||
ready bool
|
||||
width int
|
||||
height int
|
||||
}
|
||||
|
||||
type agentResponseMsg struct {
|
||||
response string
|
||||
err error
|
||||
}
|
||||
|
||||
func initialModel() model {
|
||||
ta := textarea.New()
|
||||
ta.Placeholder = "Type a message..."
|
||||
ta.Focus()
|
||||
ta.Prompt = "┃ "
|
||||
ta.CharLimit = 2000
|
||||
ta.SetHeight(3)
|
||||
|
||||
// Load TOML config
|
||||
cfg, err := sidekick.LoadConfig("config.toml")
|
||||
var agent *sidekick.Sidekick
|
||||
var pool map[string]*sidekick.Sidekick
|
||||
|
||||
if err != nil {
|
||||
ac := sidekick.AgentConfig{ID: "tui", Role: sidekick.RoleSpecialist, MaxIterations: 5}
|
||||
agent = sidekick.NewSidekick(ac, sidekick.ModelConfig{}, nil)
|
||||
} else {
|
||||
// Attempt to load and apply prompts
|
||||
tmpl, _ := sidekick.LoadPrompts("prompts.toml")
|
||||
|
||||
sidekick.InitMCPServers(cfg.MCPServers)
|
||||
pool = make(map[string]*sidekick.Sidekick)
|
||||
for id, aCfg := range cfg.Agents {
|
||||
if tmpl != nil && tmpl.Lookup(id) != nil {
|
||||
rendered, rErr := sidekick.RenderPrompt(tmpl, id)
|
||||
if rErr == nil {
|
||||
aCfg.SystemPrompt = rendered
|
||||
}
|
||||
}
|
||||
mCfg := cfg.Models[aCfg.ModelID]
|
||||
pool[id] = sidekick.NewSidekick(aCfg, mCfg, nil)
|
||||
}
|
||||
entryAgent := "coordinator"
|
||||
if _, ok := pool[entryAgent]; !ok {
|
||||
for id := range pool {
|
||||
entryAgent = id
|
||||
break
|
||||
}
|
||||
}
|
||||
agent = pool[entryAgent]
|
||||
}
|
||||
|
||||
return model{
|
||||
textarea: ta,
|
||||
agent: agent,
|
||||
pool: pool,
|
||||
messages: []string{sysStyle.Render("System: Sidekick initialized. Type a message below.")},
|
||||
}
|
||||
}
|
||||
|
||||
func (m model) Init() tea.Cmd { return textarea.Blink }
|
||||
|
||||
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
|
||||
var (
|
||||
tiCmd tea.Cmd
|
||||
vpCmd tea.Cmd
|
||||
)
|
||||
|
||||
switch msg := msg.(type) {
|
||||
case tea.KeyMsg:
|
||||
switch msg.Type {
|
||||
case tea.KeyCtrlC, tea.KeyEsc:
|
||||
return m, tea.Quit
|
||||
case tea.KeyEnter:
|
||||
if msg.Alt {
|
||||
break
|
||||
}
|
||||
v := m.textarea.Value()
|
||||
if strings.TrimSpace(v) == "" || m.isThinking {
|
||||
return m, nil
|
||||
}
|
||||
m.messages = append(m.messages, userStyle.Render("You")+"\n"+v)
|
||||
m.textarea.Reset()
|
||||
m.viewport.SetContent(strings.Join(m.messages, "\n\n"))
|
||||
m.viewport.GotoBottom()
|
||||
m.isThinking = true
|
||||
return m, m.runAgent(v)
|
||||
}
|
||||
case agentResponseMsg:
|
||||
m.isThinking = false
|
||||
if msg.err != nil {
|
||||
m.messages = append(m.messages, sysStyle.Render(fmt.Sprintf("Error: %v", msg.err)))
|
||||
} else {
|
||||
m.messages = append(m.messages, agentStyle.Render("Sidekick")+"\n"+msg.response)
|
||||
}
|
||||
m.viewport.SetContent(strings.Join(m.messages, "\n\n"))
|
||||
m.viewport.GotoBottom()
|
||||
return m, nil
|
||||
case tea.WindowSizeMsg:
|
||||
m.width = msg.Width
|
||||
m.height = msg.Height
|
||||
|
||||
headerHeight := 1
|
||||
inputHeight := 5 // Textarea height(3) + border/padding
|
||||
|
||||
if !m.ready {
|
||||
m.viewport = viewport.New(msg.Width-2, msg.Height-headerHeight-inputHeight-2)
|
||||
m.viewport.SetContent(strings.Join(m.messages, "\n\n"))
|
||||
m.ready = true
|
||||
} else {
|
||||
m.viewport.Width = msg.Width - 2
|
||||
m.viewport.Height = msg.Height - headerHeight - inputHeight - 2
|
||||
}
|
||||
|
||||
m.textarea.SetWidth(msg.Width - 4)
|
||||
}
|
||||
|
||||
m.textarea, tiCmd = m.textarea.Update(msg)
|
||||
m.viewport, vpCmd = m.viewport.Update(msg)
|
||||
return m, tea.Batch(tiCmd, vpCmd)
|
||||
}
|
||||
|
||||
func (m model) runAgent(prompt string) tea.Cmd {
|
||||
return func() tea.Msg {
|
||||
res, err := m.agent.Run(context.Background(), []sidekick.Message{{Role: sidekick.MessageRoleUser, Content: prompt}}, m.pool)
|
||||
return agentResponseMsg{response: res, err: err}
|
||||
}
|
||||
}
|
||||
|
||||
func (m model) View() string {
|
||||
if !m.ready {
|
||||
return "\n Initializing..."
|
||||
}
|
||||
|
||||
status := "IDLE"
|
||||
if m.isThinking {
|
||||
status = "THINKING"
|
||||
}
|
||||
|
||||
header := lipgloss.JoinHorizontal(lipgloss.Top,
|
||||
titleStyle.Render(" SIDEKICK NG "),
|
||||
statusStyle.Render(" "+status+" "),
|
||||
)
|
||||
|
||||
vpView := viewportStyle.Width(m.width - 2).Height(m.height - 10).Render(m.viewport.View())
|
||||
|
||||
taStyle := textareaStyle
|
||||
if m.textarea.Focused() {
|
||||
taStyle = textareaFocusStyle
|
||||
}
|
||||
taView := taStyle.Width(m.width - 2).Render(m.textarea.View())
|
||||
|
||||
return lipgloss.JoinVertical(lipgloss.Left,
|
||||
header,
|
||||
vpView,
|
||||
taView,
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
func main() {
|
||||
if _, err := tea.NewProgram(initialModel(), tea.WithAltScreen()).Run(); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user