ReadRequest

@Serializable
sealed interface ReadRequest(source)

Inheritors

Types

Link copied to clipboard
@Serializable
data class File(val path: Path, val displayPath: Path, val startLine: Int, val endLine: Int, val lineNumber: Boolean, val unicodeEscape: Boolean) : ReadRequest
Link copied to clipboard
@Serializable
data class Summarize(val path: Path, val displayPath: Path, val startLine: Int, val endLine: Int, val prompt: String?) : ReadRequest

Properties

Link copied to clipboard
@Serializable(with = PathSerializer::class)
abstract val displayPath: Path
Link copied to clipboard
abstract val endLine: Int
Link copied to clipboard
abstract val lineNumber: Boolean
Link copied to clipboard
@Serializable(with = PathSerializer::class)
abstract val path: Path
Link copied to clipboard
abstract val startLine: Int
Link copied to clipboard
abstract val unicodeEscape: Boolean