askuser

package
v0.19.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 31, 2026 License: MIT Imports: 5 Imported by: 0

Documentation

Overview

Package askuser provides the ask_user tool that lets the agent ask the user one or more questions and block until they respond.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewTool

func NewTool(b *Bridge) core.Tool

NewTool creates the ask_user tool wired to the given bridge.

Types

type Bridge

type Bridge struct {
	// contains filtered or unexported fields
}

Bridge connects the ask_user tool to the UI.

func NewBridge

func NewBridge() *Bridge

NewBridge creates a bridge.

func (*Bridge) Prompts

func (b *Bridge) Prompts() <-chan Prompt

Prompts returns the channel the UI listens on.

type Prompt

type Prompt struct {
	Questions []Question
	Response  chan<- []string // one answer per question (exactly once)
}

Prompt is the full batch sent from the agent to the UI.

type Question

type Question struct {
	Text    string   `json:"question"`
	Options []string `json:"options,omitempty"`
}

Question describes a single question with optional predefined choices.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL