6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
import { Conversation } from './types';
|
|
|
|
export async function helloWorldAgent(_conv: Conversation): Promise<string> {
|
|
return 'hello world';
|
|
}
|