grokkit/cmd/chat.go

17 lines
391 B
Go

package cmd
import (
"github.com/spf13/cobra"
"gmgauthier.com/grokkit/internal/grok"
)
var chatCmd = &cobra.Command{
Use: "chat",
Short: "Interactive streaming chat with Grok",
Run: func(cmd *cobra.Command, args []string) {
client := grok.NewClient()
// TODO: add history + loop (we can expand this later)
// For now, basic streaming chat can be added in next iteration
},
}