Control your computer effortlessly with natural language commands.
Project details
George is an innovative API that utilizes AI to enable natural language control of your computer. By interpreting UI elements dynamically, it adapts to changes in the interface, overcoming limitations of traditional automation tools. Experience a more intuitive way to automate tasks with George.
George is an innovative API harnessing the power of artificial intelligence to simplify computer control with natural language. Unlike conventional frameworks that depend on predefined static selectors, George employs AI vision technology to interpret the screen dynamically. This approach not only enhances resilience to UI changes but also enables automation of interfaces that traditional tools struggle to manage.
Below is a simple example demonstrating how to use George in a Rust application:
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut george = George::new("https://your-molmo-llm.com");
george.start().await?;
george.open_chrome("https://some-website.com").await?;
george.click("sign in link").await?;
george.fill_in("input Email text field", "your@email.com").await?;
george.fill_in("input Password text field", "super-secret").await?;
george.click("sign in button").await?;
george.close_chrome().await?;
george.stop().await?;
}
George is built on top of Molmo, a vision-based large language model (LLM) that translates natural language descriptions into screen coordinates. This unique mechanism allows for accurate identification and interaction with UI elements.
Comments
5Very cool project! Starred. How come you used Molmo?