Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the official synchronous or asynchronous Darwin client in Python.
pip install darwin-sdk
import os from darwin_sdk import Darwin darwin = Darwin(token=os.environ["DARWIN_API_KEY"]) turn = darwin.agent.create_message( content="Help me prepare a private goal.", )
import os from darwin_sdk import AsyncDarwin darwin = AsyncDarwin(token=os.environ["DARWIN_API_KEY"]) turn = await darwin.agent.create_message( content="Summarize my active goals.", )