Frequently Asked Questions
Answers common questions about an AI SaaS platform's features, pricing, integrations, and troubleshooting for prospective users.
What this file does
Answers common questions about an AI SaaS platform's features, pricing, integrations, and troubleshooting for prospective users.
When to use it
- Onboarding new team members to the platform
- Setting up a public-facing FAQ page for your SaaS product
- Providing self-service support documentation for users
Assumes this stack
Frequently Asked Questions
Common questions and answers about the Gagiteck AI SaaS Platform.
General
What is Gagiteck?
Gagiteck is an AI SaaS platform that enables businesses to build, deploy, and manage autonomous AI agents. These agents can automate complex workflows, integrate with existing tools, and handle tasks that traditionally required human intervention.
What can I build with Gagiteck?
- Customer Support Agents - Handle inquiries, process returns, answer FAQs
- Research Assistants - Gather information, summarize documents, analyze data
- Workflow Automation - Multi-step business processes with AI decision-making
- Code Assistants - Help with code review, documentation, debugging
- Data Processing Pipelines - Extract, transform, analyze data at scale
Which AI models are supported?
| Provider | Models |
|---|---|
| Anthropic | Claude 3 Opus, Sonnet, Haiku |
| OpenAI | GPT-4, GPT-4 Turbo, GPT-3.5 |
| Gemini Pro, Gemini Ultra | |
| Local | Ollama, LMStudio, vLLM |
Is my data secure?
Yes. We implement:
- End-to-end encryption (TLS 1.3)
- Encryption at rest (AES-256)
- SOC 2 Type II compliance
- GDPR compliance
- Optional HIPAA compliance (Enterprise)
See our Security Guide for details.
Getting Started
How do I get started?
- Sign up at gagiteck.com
- Create your first agent in the dashboard
- Or follow our Quick Start Guide
What are the system requirements?
For self-hosted deployment:
- CPU: 4+ cores
- RAM: 8+ GB
- Storage: 20+ GB SSD
- OS: Linux, macOS, or Windows with WSL2
How do I get my API key?
- Log into the Gagiteck dashboard
- Go to Settings > API Keys
- Click "Create New Key"
- Copy and securely store the key (it's only shown once)
Agents
What's the difference between an agent and a chatbot?
| Feature | Chatbot | Gagiteck Agent |
|---|---|---|
| Conversation | Yes | Yes |
| Tool Usage | Limited | Full |
| Autonomous Actions | No | Yes |
| Multi-step Reasoning | Limited | Yes |
| Memory | Session only | Persistent |
| Workflow Integration | No | Yes |
How many agents can I create?
| Plan | Agents |
|---|---|
| Free | 3 |
| Pro | 25 |
| Enterprise | Unlimited |
Can agents call external APIs?
Yes! Agents can use tools to:
- Make HTTP requests
- Query databases
- Send emails/messages
- Interact with any API
See Integrations Guide.
How do I give an agent memory?
agent = client.agents.create(
name="Personal Assistant",
memory_enabled=True,
memory_type="long_term", # Persists across conversations
memory_window=50 # Messages to retain
)
Workflows
What's a workflow?
A workflow is a sequence of steps that orchestrate multiple agents to complete complex tasks. Think of it as a pipeline where each step can:
- Run an agent
- Make decisions based on conditions
- Execute in parallel
- Handle errors gracefully
Can workflows run on a schedule?
Yes! Use cron expressions:
trigger:
type: schedule
cron: "0 9 * * 1-5" # 9 AM, Monday-Friday
timezone: America/New_York
How do I pass data between workflow steps?
Use template variables:
steps:
- id: step1
agent: researcher
input: "Research {{inputs.topic}}"
- id: step2
agent: writer
input: "Write about: {{steps.step1.output}}"
depends_on: [step1]
Pricing & Billing
What's included in the free plan?
- 3 agents
- 1 workflow
- 1,000 API calls/month
- 1 GB storage
- Community support
How is usage calculated?
Usage is based on:
- API Calls - Each agent execution or API request
- Tokens - LLM tokens consumed (input + output)
- Storage - Files and data stored
Do unused credits roll over?
Monthly API calls reset each billing cycle. Token credits on annual plans roll over for up to 3 months.
Can I upgrade or downgrade anytime?
Yes. Upgrades take effect immediately. Downgrades apply at the next billing cycle.
Technical
What programming languages are supported?
Official SDKs:
- Python 3.8+
- Node.js 18+
- Go 1.20+
Any language can use the REST API.
Is there a rate limit?
| Plan | Requests/minute |
|---|---|
| Free | 60 |
| Pro | 600 |
| Enterprise | 6,000+ |
How do I handle errors?
from gagiteck import Client, GagiteckError
client = Client(api_key="YOUR_KEY")
try:
response = client.agents.run(agent_id="agent_123", message="Hello")
except GagiteckError as e:
print(f"Error: {e.code} - {e.message}")
Can I run Gagiteck on-premise?
Yes, Enterprise plans include on-premise deployment options. Contact sales@gagiteck.com.
Integrations
Which services can I integrate?
50+ integrations including:
- Communication: Slack, Discord, Email, Teams
- Development: GitHub, GitLab, Jira, Linear
- CRM: Salesforce, HubSpot, Pipedrive
- Data: PostgreSQL, MongoDB, BigQuery
See Integrations Guide.
Can I build custom integrations?
Yes! Create custom tools using:
- HTTP/REST APIs
- GraphQL
- Webhooks
- Database connections
@tool
def my_custom_integration(param: str) -> dict:
"""My custom tool."""
return requests.get(f"https://api.example.com/{param}").json()
Troubleshooting
My agent isn't responding
- Check API key validity
- Verify agent status is "active"
- Check rate limits
- Review error logs in dashboard
Agent responses are slow
- Try a faster model (Haiku vs Opus)
- Reduce max_tokens
- Simplify system prompt
- Check network latency
Tool calls are failing
- Verify tool permissions
- Check external API status
- Review tool input/output logs
- Test tool in isolation
How do I debug an agent?
response = client.agents.run(
agent_id="agent_123",
message="Debug this",
debug=True
)
print(response.debug.reasoning_trace)
print(response.debug.tool_calls)
Support
How do I get help?
- Documentation: docs/
- Community: GitHub Discussions
- Email: support@gagiteck.com
- Enterprise: Dedicated Slack channel
How do I report a bug?
- Check existing GitHub Issues
- Create a new issue with:
- Steps to reproduce
- Expected vs actual behavior
- Environment details
- Error messages/logs
Is there a status page?
Yes: status.gagiteck.com
Subscribe for incident notifications.
What's inside
10 sections covering general info, getting started, agents, workflows, pricing, technical details, integrations, troubleshooting, and support.
Change this for your project
- Replace
gagiteck.comwith your own platform URL - Replace
Gagiteckwith your product name throughout - Replace
support@gagiteck.comwith your support email - Replace
sales@gagiteck.comwith your sales contact
Where it goes
Keep it in your repository where the agent or team that needs it will read it.
Worth borrowing
- Comparison tables for agent vs chatbot and plan limits
- Code snippets for common tasks like memory setup and error handling
- Structured troubleshooting section with numbered steps
Related Documents
Most of this information is no longer applicable. Ask questions in Discord.
Explains AI roleplaying concepts, compares model quality, and gives setup steps for TavernAI with OpenAI.
Qdrant & KiloCode Integration FAQ
Explains RAG, Qdrant collections, vectors, and the KiloCode workflow for local semantic code search.
常见问题解答 | FAQ
Answers 30 common questions about installing, configuring, and using an AI testing skills library across Cursor, Claude Code, and Kiro.
Vector RAG POC - Frequently Asked Questions
Answers 25 common questions about setting up and using a Vector RAG proof of concept with Elasticsearch.