Overview
This quickstart guide will help you:- Create an account and set up your organization
- Build your first agent using the web interface
- Test your agent in the chat interface
- (Optional) Integrate via API using the OpenAI-compatible endpoint
Prerequisites: A Google account for authentication. No coding required for steps 1-3!
Step 1: Create Your Account
1
Sign Up
Go to junis.ai and click “Sign in with Google”
2
Complete Onboarding
You’ll be redirected to the onboarding page. Fill in:
- Organization Name: Your company or personal workspace name
- Display Name: How you want to be addressed
3
Access Dashboard
You’ll land on the main dashboard. This is your command center!
Step 2: Create Your First Agent
1
Navigate to Orchestration
Click “Team Management” dropdown in the Navigation Bar, then select “Agent Orchestration”
2
Create New Agent
Click the “New Agent” buttonFill in the form:
3
Write Instructions
In the “Instructions” field, write:
4
Save Agent
Click “Create” to save your agent
Agent created successfully!
Step 3: Test Your Agent
1
Open Chat Interface
Click “Chat” in the sidebar
2
Send a Message
Type a message and hit Enter:Watch as your agent responds in real-time! 🚀
3
Explore Features
Try these features:
- File Upload: Click 📎 to attach documents
- Voice Input: Click 🎤 to speak your message
- Session History: See past conversations in the sidebar
Step 4: Integrate via API (Optional)
Now let’s call your agent programmatically using our OpenAI-compatible API.1
Generate API Key
- Navigate to “Dashboard” → “API Keys”
- Click “Create New API Key”
- Enter:
- Name: My First API Key
- Description: Testing quickstart
- Scopes: (leave default)
- IMPORTANT: Copy the key immediately - it won’t be shown again!
2
Test with cURL
Open your terminal and run:
You should receive a response from your agent!
3
Enable Streaming
For real-time token-by-token responses:
Next Steps
Agent System Overview
Learn about Sequential, Parallel, and Loop agents
Connect External Services
Integrate GitHub, Firecrawl, and more via MCP
Scheduled Tasks
Automate workflows with flexible scheduling
Tools & Capabilities
Explore all available tools and features
Common Issues
Agent not responding
Agent not responding
Solutions:
- Check if agent is active (toggle in admin panel)
- Verify LLM model is available (check status page)
- Refresh the page and try again
- Check browser console for errors (F12)
API key not working
API key not working
Solutions:
- Ensure you’re using the correct header:
X-API-Key - Check if key is still active in admin panel
- Verify you’re calling the correct endpoint:
/api/external/v1/chat/completions - Check for typos in the API key
Slow responses
Slow responses
Possible causes:
- Model: Claude Opus is slower than Haiku. Switch to Haiku for faster responses
- RAG: Large knowledge bases increase latency. Optimize document size
- MCP: External service calls add time. Use caching when possible
- Network: Check your internet connection
