import { Vibium, Driver } from 'vibium-ai'; const driver = new Driver({
kind: 'playwright',
headless: false
}); const vibium = new Vibium(driver, { llm: 'openai', key: '' }); // actions await vibium.run("Go to Google.com"); await vibium.run("type youtube in the search box and press enter"); await vibium.run("click on youtube link"); // checks await vibium.check('the page title to be YouTube'); await client.close();