| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { ConfigMarkdown } from "@/config/markdown"
- import { Config } from "../config/config"
- import { MCP } from "../mcp"
- import { Provider } from "../provider/provider"
- 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 (Provider.ModelNotFoundError.isInstance(input)) {
- const { providerID, modelID, suggestions } = input.data
- return [
- `Model not found: ${providerID}/${modelID}`,
- ...(Array.isArray(suggestions) && suggestions.length ? ["Did you mean: " + suggestions.join(", ")] : []),
- `Try: \`opencode models\` to list available models`,
- `Or check your config (opencode.json) provider/model names`,
- ].join("\n")
- }
- if (Provider.InitError.isInstance(input)) {
- return `Failed to initialize provider "${input.data.providerID}". Check credentials and configuration.`
- }
- 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.ConfigDirectoryTypoError.isInstance(input)) {
- return `Directory "${input.data.dir}" in ${input.data.path} is not valid. Rename the directory to "${input.data.suggestion}" or remove it. This is a common typo.`
- }
- if (ConfigMarkdown.FrontmatterError.isInstance(input)) {
- return `Failed to parse frontmatter in ${input.data.path}:\n${input.data.message}`
- }
- if (Config.InvalidError.isInstance(input))
- return [
- `Config file at ${input.data.path} is invalid` + (input.data.message ? `: ${input.data.message}` : ""),
- ...(input.data.issues?.map((issue) => "↳ " + issue.message + " " + issue.path.join(".")) ?? []),
- ].join("\n")
- if (UI.CancelledError.isInstance(input)) return ""
- }
- export function FormatUnknownError(input: unknown): string {
- if (input instanceof Error) {
- return input.stack ?? `${input.name}: ${input.message}`
- }
- if (typeof input === "object" && input !== null) {
- try {
- const json = JSON.stringify(input, null, 2)
- if (json && json !== "{}") return json
- } catch {}
- }
- return String(input)
- }
|