We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Working with Eden Python SDK.
To use a tool:
from eve.tool import Tool async def main(): tool = Tool.load("flux_dev", db="STAGE") return await tool.async_run({ "prompt": "The universe in a bottle" }) import asyncio result = asyncio.run(main) print(result)
Non-async version coming soon.