Website | Docs| Join Slack community
Lamatic.ai is a managed agent platform with a Visual Flow Builder, VectorDB, and deep Integrations to apps, data sources, and models. Build and deploy AI-powered GraphQL APIs and intelligent agents on the edge without heavy infra setup.
Try the hosted studio at studio.lamatic.ai
Lamatic.ai is on a mission to democratize AI agent creation for developers, teams, and enterprises. We provide SDKs, APIs, and SDK-driven workflows that make it simple to build, deploy, and manage intelligent agents at scale. Whether you’re prototyping a chatbot, integrating enterprise knowledge, or deploying production-ready AI in edge environments, Lamatic accelerates your workflow with developer-first tools and managed infrastructure.
Visit our documentation for detailed guides, use cases, and API references.
Install the SDK:
npm install lamatic
Initialize in your project:
import { Lamatic } from "lamatic";
const lamatic = new Lamatic({
apiKey: "your-api-key",
projectId: "your-project-id",
endpoint: "your-endpoint",
});
async function main() {
const flowId = "your-flow-id";
// sample payload
const payload = {
prompt: "hey, how are you?"
}
try {
const response = await lamatic.executeFlow(flowId, payload);
console.log(response);
} catch (error) {
console.error(error);
}
}
main();
Checkout SDK Docs for complete instructions.
-
Create a Flow in Cloud Studio
- Define logic using the visual builder.
- Add nodes: models, APIs, databases, or custom logic.
- Save and version your flow.
-
Connect via SDK
- Import the Lamatic SDK.
- Authenticate with your API key.
- Use
runFlow()
orquery()
to interact with deployed flows.
-
Embed in Your Application
- Integrate into web apps, backend services, or automation scripts.
- Use with frameworks like Next.js, Express, or serverless platforms.
-
Deploy at Edge
- Deploy flows directly from Lamatic Studio.
- Low-latency inference with automatic scaling.
-
Extend with Custom Nodes
- Create reusable logic blocks.
- Connect external APIs and internal tools.
Sign up for a free Lamatic Studio account to:
- Build visual flows
- Deploy GraphQL & AI-powered APIs
- Manage sources, models, and integrations in one dashboard
We welcome contributions to Lamatic:
- Star the repo
- Report issues & ideas
- Submit pull requests
- Extend the SDK with new bindings
Check out the contributing guide and our open issues.
- Join our Slack community for support
- Reach out for enterprise or partner inquiries via lamatic.ai/contact