// AI thinking
const response = await agent.think('What should I talk about today?');
// AI thinking and speaking
const audioPath = await agent.thinkAndSpeak('Tell me about AI');
// AI-powered streaming
await agent.startAIStream({
imagePath: '/path/to/image.png',
prompt: 'Give a 30-second intro about AI',
rtmpUrl: 'rtmp://your.stream.url'
});