RSSAmplifier

Miguel Piedrafita · Apr 3, 2025

A library to let AI take over your computer

0
Sign in to vote or save

This page did not load. You can still read it on the original site — the toolbar below keeps your place in the directory.

let agent = Agent(model: .aceSmall, apiKey: "sk_...") let computer = Computer() let session = agent.start("Star the GeneralAgentsKit github repository") var observation = try await computer.observe() while true { let action = try await session plan(observation: observation) print("Executing: \(action)") if action.kind == .stop { break } observation = try await computer.execute(action) } I've been…

Read on miguel.build

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.