import { createOpencodeClient } from "@opencode-ai/sdk" export const getClient = async (opts?: { baseUrl?: string }) => { const client = await createOpencodeClient({ baseUrl: opts?.baseUrl ?? "http://localhost:4096", }) return client; }