Interface ChatResponseFileTree

Represents a file tree structure in a chat response.

Stubbed

interface ChatResponseFileTree {
    children?: ChatResponseFileTree[];
    name: string;
}

Properties

Properties

An array of child file trees, if the current file tree is a directory.

name: string

The name of the file or directory.