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…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.