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