// code-act · framework · apache 2.0

Delfhos

Agents for

Agents that write and run code against your real tools. Built to be easy to use, efficient at runtime, and secure by default.

Docs →
// sql + sheets · live run standby
from delfhos import Agent, SQL, Sheets

db     = SQL(url="postgresql://db.acme.co/prod")
sheets = Sheets(oauth_credentials="creds.json")

agent = Agent(
    tools=[db, sheets],
    llm="claude-sonnet-4-6",
)

agent.run(
    "Pull last month's revenue by region "
    "and update 'Revenue Q3' sheet"
)
agent.stop()