Un agente que responde existe en todas partes. Un agente que actúa, mucho menos.
Un agente autónomo recibe un objetivo, planifica los pasos, llama a sus herramientas, decide cuando el caso lo exige y rinde cuentas de lo que ha hecho. La plataforma está en línea: 58 agentes expertos listos para usar, un estudio para componer los suyos, y cuatro formas de exponerlos.
AI agent or chatbot: the difference is not cosmetic
Both speak the same language. Only one of them changes what happens inside your information system.
Autonomous agent
Classic chatbot
Trigger
An objective: “process the invoices that arrived last night”
A question asked by a human
Reasoning
Breaks the objective down, plans the steps, reassesses when a step fails
One answer per message, no memory of a plan
Tool access
Calls your APIs, databases, business software and external services
Stays inside the conversation window
Effect
Writes into the system: creates, updates, notifies, triggers
Produces text
Memory
Task context, execution history, intermediate state
The current conversation thread
Control
Guardrails, human sign-off on sensitive actions, full audit log
Content filters
What happens between the objective and the report
Five steps, run at every launch. None is a black box: each leaves a trace you can read.
01 / 05
Receiving the objective
The agent receives a request — from a human, a system event, a webhook or a schedule. It extracts the real intent, the implicit constraints, and what is missing before it can act. If a decisive piece of information is missing, it asks rather than inventing it.
02 / 05
Planning
The objective is broken into ordered steps, each with the tool to call and the expected result. The plan is visible: on sensitive processes you can read it before execution, and require human sign-off at exactly that point.
03 / 05
Tool-based execution
The agent calls your systems: reading a database, searching the document layer, calling a REST or MCP API, writing into the CRM, generating a document. Every call is authenticated with the originating user's rights, never with an all-powerful service account.
04 / 05
Adaptive decision-making
When a step returns something unexpected — missing data, an amount outside the threshold, a contradiction between two sources — the agent does not force it. It replans, escalates to a human, or stops, according to the rule agreed with you for that case.
05 / 05
Reporting and traceability
The agent reports what it did, what it read, what it wrote and what it could not do. The audit log keeps every call, every source and every decision — usable for internal control as much as for AI Act documentation.
What your agents can do
These capabilities combine: one agent reads, decides, writes and notifies within a single run. The studio composes them without code, by switching on 59 capability bundles.
Work as a team
The orchestrator splits a mission across several agents working in parallel, reviewing each other, looping on points of disagreement, then assembling the deliverable. You watch the reasoning live in the thread.
Process an inbound flow
Emails, forms, invoices, orders, tickets: the agent reads, classifies, extracts the useful fields and triggers the treatment, escalating the ambiguous cases.
Analyse your data
A dedicated agent takes on large Excel and CSV files as well as SQL databases — PostgreSQL, MySQL, SQL Server, Oracle, MongoDB — and returns the calculation with the rows it used.
Produce a deliverable
Slides on your PowerPoint template, professional documents, publishable websites and apps: the creation studio outputs the file in the expected format, not a draft to reformat.
Write into your systems
Send an email, publish, schedule, create an opportunity, update a record. Sensitive actions go through human sign-off if you decide so.
Monitor continuously
A watch agent runs in the background, crossing technical, fundamental and sentiment analysis in parallel, and only writes when there is something to say.
Four ways to expose an agent, one to choose
The agent is the same in all four. You choose on security, integration and governance constraints — and you can change without rebuilding it.
Exposure mode
What you get
Who it is for
Hosted platform
Ready interface, team and seat management, SSO, four languages including right-to-left Arabic
Starting with nothing to install, ready in 30 seconds
REST API
Full control: personal keys, durable run queue, streaming responses, usage tracking
Wiring the agent into your application or existing software
Embedded widget
One <script> tag, no back-end to write — the agent becomes your site's chatbot
Exposing an agent to your customers without leaving your site
White label
Your branding, on your domain
Reselling the agent under your own brand
On-premise
The full stack installs on your machines, including air-gapped networks with no internet access
Vector search, full text, a typed-entity channel and a knowledge graph, queried together.
Function calling, MCP and OpenAPI
Every tool is described by its contract. The agent can only call what it is authorised to call.
Memory and personas
Task state, history, and writing-style cloning from your own samples.
Integrations
Microsoft 365, Notion, GitHub, GitLab, Stripe, PayPal, n8n, SQL databases, web search and extraction.
What actually decides it at the security committee
These guarantees are properties of the architecture, not interface options. They can be verified, and that is usually what gets a project through.
Guarantee
What it means concretely
Isolated execution
Generated code runs in a hardened sandbox with no network access, read-only, with memory and wall-clock ceilings.
Controlled egress
A single audited outbound path, allowlisted, with protection against requests aimed at your internal resources.
Prompt-injection guard
As soon as untrusted content enters a run — a web page read, a scraped document — side-effect and exfiltration tools are disabled for the rest of the turn.
Isolation
Separation by organisation, team and user. The agent's rights are those of the person who launched it, never a technical account.
Organisation secret vault
An admin stores a key once; members use it without ever being able to read it. Revoking the secret revokes every use of it at once.
Enterprise identity
Per-organisation OIDC SSO, automatic account provisioning, and clean suspension when the organisation changes plan.
Audit log and SIEM
A complete trail, exported to your collector — read in scheduled batches, never in the path of a login.
GDPR
Account deletion with deferred purge, per-organisation conversation retention, data export.
Budget and kill-switch
A per-organisation daily and monthly spend ceiling enforced at the front door: beyond it the request is refused rather than billed.
The web studio preview runs in an opaque origin: generated HTML can never reach any of the application's tokens. And browser-side writes take their identity from the signed token, never from the request body.
What you actually write to use it
The platform is used from its interface, but everything it does is available through the API too: personal keys, a durable run queue, streaming responses and usage tracking.
bash
# Launch a mission and stream the response.
curl -N https://ai.syctra.com/api/v1/runs \
-H "Authorization: Bearer $SYCTRA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"agent": "market-desk",
"input": "Market note on our three competitors, dated sources.",
"stream": true
}'
# The run queue is durable: a long mission survives a client
# disconnect, and can be read back by its identifier.
html
<!-- An agent becomes your site's chatbot.
No back-end to write, no key exposed in the browser. -->
<script
src="https://ai.syctra.com/embed.js"
data-agent="customer-support"
data-locale="en"
defer
></script>
bash
# Create a knowledge base and load a corpus into it.
# Up to 100 MB and 1,500-page catalogues, via batch OCR.
curl https://ai.syctra.com/api/v1/knowledge-bases \
-H "Authorization: Bearer $SYCTRA_API_KEY" \
-F name="Supplier contracts" \
-F files=@contracts.zip
# Answers cite their sources: every clickable [N] opens
# the exact page of the original PDF.
yaml
# The full stack installs on your machines,
# including air-gapped networks with no internet access.
models:
provider: vllm # or ollama, lm-studio, hugging-face
base_url: http://internal-gpu:8000/v1
network:
egress: deny # no outbound calls
storage:
isolation: per-account
audit_log: true
compliance:
gdpr_export: true
account_deletion: true
Per-account isolation, sandboxed execution, audit log, GDPR export and account deletion. Irreversible actions go through human sign-off, by design.
Three processes, three agents
Deliberately narrow perimeters: an agent that does one thing well beats an agent that does ten things badly.
01 · Contexto
Three hundred invoices a month arrive by email, in ten different formats. One person keys them in, another matches them to purchase orders.
02 · Lo que ponemos en marcha
An agent reads every attachment, extracts supplier, amount, VAT and references, matches against the purchase order in the ERP, and escalates only discrepancies and unknown suppliers.
03 · Resultado
Data entry disappears. The team handles exceptions instead of volume, and every match is justifiable in one click.
01 · Contexto
Inbound requests from the website and trade shows land in a shared mailbox. The best ones get handled, the rest go cold.
02 · Lo que ponemos en marcha
An agent qualifies each request from the message and public sources, enriches it, creates the opportunity in the CRM with a score and written context, and alerts the relevant rep.
03 · Resultado
No request sits idle. The rep opens a case already worked rather than a three-line email.
01 · Contexto
Every new hire triggers fifteen tasks split between HR, IT and the manager, tracked in a spreadsheet.
02 · Lo que ponemos en marcha
An agent orchestrates the onboarding sequence: account creation via API, sending documents, chasing late owners, answering the newcomer's questions from internal procedures.
03 · Resultado
Onboarding runs without manual chasing, and the gap between planned and actual is visible in real time.
What we measure
The first two figures come from the search engine feeding the agents, measured on a public question-answer set. The third is the pace of our projects.
to first results from the search engine, at over 500 concurrent queries
265 ms
to first results from the search engine, at over 500 concurrent queries
between pilot launch and the decision to industrialise or stop
6-10 weeks
between pilot launch and the decision to industrialise or stop
Estos órdenes de magnitud proceden de lo que medimos en el piloto sobre alcances comparables. Sobre su corpus se miden antes de la industrialización, no se prometen antes.
Lo que puede ver funcionando hoy
Estos productos ya están construidos. Algunos están disponibles en línea, los demás se muestran en demostración bajo petición.
Demo en línea
Plataforma Agéntica
Construye tus propios agentes de IA sin escribir una línea de código.
Herramientas, memoria a largo plazo, conectores, barreras de seguridad y supervisión en una sola interfaz. Tus equipos diseñan un agente por la mañana y lo ponen en producción por la tarde, sobre tus datos.
Varios agentes que se reparten el trabajo y se revisan entre sí.
Donde un agente solo se equivoca, un enjambre converge: cada uno trata su parte, critica la de los demás y el resultado se consolida. Para análisis documental masivo y tareas de decenas de pasos.
The chatbot answers in a window. The agent receives an objective, plans, calls your tools and writes into your systems. If your need is to answer questions, a support assistant is enough and costs less — we will say so.
Its action perimeter is declared: it can only call authorised tools, with the originating user's rights. Irreversible actions go through human sign-off. And every call is logged, so it is reversible and auditable.
No. We wire into what exists: REST APIs, databases, ERP, CRM, internal tools. Where there is no API, the software pole builds one — that is often the real project.
Two to three weeks of scoping, then six to ten weeks of pilot in real conditions. An agent on a narrow perimeter can be visible sooner, but the integration with rights and systems is what takes the time.
A standard protocol that tells an agent which tools it has and how to call them. In practice it avoids writing one bespoke connector per tool: if your service exposes it, the agent knows how to use it.
The architecture is not tied to a single vendor. Models are interchangeable, including sovereign or self-hosted ones. That is a design decision, not an option bolted on afterwards.
No. The studio composes an agent by switching on 59 capability bundles, without writing a line. The API exists for those who want to go further, not as a mandatory step.
Yes, the full stack installs on your machines, including air-gapped networks with no internet access, with your own models served locally by vLLM, Ollama, LM Studio or Hugging Face.
In credits: one million tokens is a thousand credits, roughly $1.11. Unused credits roll over month to month and never expire; if you cancel, they stay yours. A typical presentation mission costs a few dozen credits.
Lo que esta solución no hace
An autonomous agent is not the right answer to a poorly defined process. If nobody in the organisation can describe the current rules, automating will only accelerate the mess — so we start by writing the process, which belongs to the software pole. Nor do we let an agent single-handedly trigger an irreversible financial or legal action: those steps go through human sign-off, by design.
Which process would you hand to an agent?
Describe it in two lines. In thirty minutes we will tell you whether it can be automated, on what condition, and where to start.