Ziet is the first serverless platform for building AI agents. Write Python code, deploy instantly, and scale automatically. No servers, databases, or infrastructure to manage.
Ziet is a serverless platform for building and deploying AI agents. Focus on writing Python code while Ziet handles all the infrastructure, scaling, and observability.
No Infrastructure
No servers, databases, or DevOps. Just write Python and deploy.
Auto-Scaling
Scale from zero to millions of requests automatically.
Built-in Integrations
Google, OpenAI, Stripe, Twilio, and more—out of the box.
Observable by Default
Track every action, memory operation, and agent decision.
Ziet provides two powerful approaches:Agentic Approach: Build intelligent agents with Actions, Memory, and Strategies Application Approach: Build serverless APIs with Endpoints and Database
Agentic
Application
from ziet import Action, Agent, PickActionsStrategy, HandOffStrategy@Action(id="search_flights", name="Search Flights", description="Search for flights")def search_flights(origin: str, dest: str) -> list: # Your code here return results@PickActionsStrategy(picks=2, allow_repeats=False)@HandOffStrategy(agents=["review_agent"])@Agent( id="search_agent", name="FlightSearcher", description="Search and analyze flight options", instructions=""" Search for flights using multiple sources, analyze options, and hand off to review agent for final recommendation. """, actions=["search_flights", "compare_prices", "check_availability"])class FlightSearchAgent: pass # Agent behavior is defined by instructions and strategies
Autonomous agents that orchestrate multiple actions to complete complex tasks.
@PickActionsStrategy(picks=3, allow_repeats=False)@HandOffStrategy(agents=["summarizer_agent"])@Agent( id="researcher_agent", name="ResearchAgent", description="Research topics and gather information", instructions=""" Research the given topic by searching multiple sources, picking the best 3 search actions, and gathering comprehensive data. Hand off to summarizer agent when complete. """, actions=["search_google", "scrape_websites", "search_news"], model="gpt-4o")class ResearchAgent: pass # Agent behavior is defined by instructions and strategies