Quick Start Guide
Build your first AI agent in minutes with Liine AI
Your First AI Agent
This guide will walk you through creating your first AI agent using Liine AI.
Step 1: Create a New Agent
Navigate to the Agent Builder in your dashboard and click "Create New Agent".
Step 2: Configure Your Agent
Give your agent a name and description:
const agent = {
name: 'Customer Support Bot',
description: 'Handles customer inquiries and support tickets',
model: 'gpt-4',
}Step 3: Add Capabilities
Add capabilities to your agent by connecting nodes in the visual workflow:
- Input Node: Receives user messages
- AI Processing Node: Processes the input using the selected model
- Output Node: Returns the response to the user
Step 4: Test Your Agent
Use the built-in testing panel to interact with your agent:
- Click the "Test" button in the top right
- Type a sample message
- Review the agent's response
- Iterate and improve
Step 5: Deploy
Once you're satisfied with your agent, click "Deploy" to make it live.
Example Agent Configuration
Here's a complete example of a simple customer support agent:
{
"name": "Support Bot",
"description": "Answers common questions",
"nodes": [
{
"type": "input",
"id": "input-1"
},
{
"type": "ai-process",
"id": "ai-1",
"config": {
"model": "gpt-4",
"temperature": 0.7,
"systemPrompt": "You are a helpful customer support agent."
}
},
{
"type": "output",
"id": "output-1"
}
],
"connections": [
{ "from": "input-1", "to": "ai-1" },
{ "from": "ai-1", "to": "output-1" }
]
}Next Steps
- Learn about Core Concepts
- Explore the API Reference
- Check out Advanced Features