tabby/clients/tabby-agent/src/cli.ts

10 lines
188 B
JavaScript

#!/bin/env node
import { TabbyAgent } from "./TabbyAgent";
import { StdIO } from "./StdIO";
const agent = new TabbyAgent();
const stdio = new StdIO();
stdio.bind(agent);
stdio.listen();