Welcome to SVAHNAR Documentation
Explore guides, SDKs, and walkthroughs to help you build, test, and deploy AI agents efficiently using the SVAHNAR Platform.
The SVAHNAR Agentic AI Framework simplifies deployment and hosting of your agents, both internally and externally, via the Agent Store. Additionally, you can serve your agents through Agents over API service.
Quickstart
Create your first AI Agent in minutes using SVAHNAR SDK.from svahnar import Svahnar
client = Svahnar()
response = client.agents.create(
name="Web Search Agent",
description="This Agent is used to search for the information on web or internet and provide the result",
deploy_to="Organization",
yaml_content=Path("agent.yaml")
)
print(response)