Versions in this module Expand all Collapse all v0 v0.2.1 May 16, 2026 v0.2.0 May 16, 2026 Changes in this version + type Client struct + func NewClient(baseURL string, apiKey string) *Client + func (c *Client) DeleteNode(ctx context.Context, id string) error + func (c *Client) GetNode(ctx context.Context, id string) (*Node, error) + func (c *Client) GetTree(ctx context.Context, id string) ([]Node, error) + func (c *Client) Health(ctx context.Context) error + func (c *Client) ListConversations(ctx context.Context) ([]Node, error) + func (c *Client) Prompt(ctx context.Context, req PromptRequest) (*PromptResponse, error) + func (c *Client) PromptFrom(ctx context.Context, nodeID string, req PromptRequest) (*PromptResponse, error) + type Node struct + Content string + CreatedAt string + ID string + Model string + NodeType string + ParentID string + RootID string + Sequence int + Title string + type PromptRequest struct + MaxTokens int + Message string + Model string + SystemPrompt string + type PromptResponse struct + Content string + NodeID string