mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 06:12:26 +00:00
21 lines
765 B
TypeScript
21 lines
765 B
TypeScript
import { Config } from "../config/config"
|
|
import { MCP } from "../mcp"
|
|
import { UI } from "./ui"
|
|
|
|
export function FormatError(input: unknown) {
|
|
if (MCP.Failed.isInstance(input))
|
|
return `MCP server "${input.data.name}" failed. Note, opencode does not support MCP authentication yet.`
|
|
if (Config.JsonError.isInstance(input)) {
|
|
return (
|
|
`Config file at ${input.data.path} is not valid JSON(C)` + (input.data.message ? `: ${input.data.message}` : "")
|
|
)
|
|
}
|
|
if (Config.InvalidError.isInstance(input))
|
|
return [
|
|
`Config file at ${input.data.path} is invalid`,
|
|
...(input.data.issues?.map((issue) => "↳ " + issue.message + " " + issue.path.join(".")) ?? []),
|
|
].join("\n")
|
|
|
|
if (UI.CancelledError.isInstance(input)) return ""
|
|
}
|