// code-act · framework · apache 2.0
Agents that write and run code against your real tools. Built to be easy to use, efficient at runtime, and secure by default.
from delfhos import Agent, Gmail, Sheets gmail = Gmail(oauth_credentials="creds.json") sheets = Sheets(oauth_credentials="creds.json") agent = Agent( tools=[gmail, sheets], llm="claude-sonnet-4-6", ) agent.run( "email the team and update the 'Revenue Q3' sheet" )
agent = Agent( tools=[gmail, sheets], ) agent.run( "email the team and update the 'Revenue Q3' sheet" )