Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/yohangr3/landingpageGTCLoud/llms.txt

Use this file to discover all available pages before exploring further.

GTCloud agents and tools are purpose-built to slot into existing enterprise workflows without requiring a full-stack overhaul. Whether you are connecting to identity providers, external AI services, or composing multi-agent pipelines that span departments, the platform provides the hooks and integrations needed to automate operations at scale across marketing, finance, HR, sales, and logistics.

Firebase Authentication Integration

Every page on the IA Agentes GTCloud platform is protected by Firebase Authentication SDK v10 (firebase-auth.js version 10.14.1). The auth.js module initialises the Firebase app once, wires up the auth instance, and exports a focused set of helpers used across all HTML views.

Firebase Project Configuration

// auth.js — Firebase initialisation
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.14.1/firebase-app.js";
import { getAuth } from "https://www.gstatic.com/firebasejs/10.14.1/firebase-auth.js";

const firebaseConfig = {
  apiKey: "AIzaSyBjktx8YCSCTvTK8hxFXjFTfSKZLOlizWI",
  authDomain: "ai-agents-gtcloud.firebaseapp.com",
  projectId: "ai-agents-gtcloud",
  storageBucket: "ai-agents-gtcloud.firebasestorage.app",
  messagingSenderId: "434277005102",
  appId: "1:434277005102:web:f4ddbd6a00674a17af2cbf"
};

const app = initializeApp(firebaseConfig);
const auth = getAuth(app);

Exported Auth Helpers

The auth.js module exports seven helpers that every platform page imports:
ExportSignaturePurpose
protectPage() => voidListens for auth state; redirects unauthenticated users to /login.html
redirectIfLoggedIn() => voidListens for auth state; redirects already-authenticated users to /index.html — used on login and registration pages
logout() => voidCalls signOut(auth) and redirects to /login.html on success
authAuthThe initialised Firebase Auth instance for use in consuming modules
signInWithEmailAndPasswordFirebase helperRe-exported for use in login forms
createUserWithEmailAndPasswordFirebase helperRe-exported for use in registration forms
sendPasswordResetEmailFirebase helperRe-exported for password recovery flows

Usage Pattern

// Any protected page (e.g. index.html, herramientas_agenticas.html)
import { protectPage, logout } from "./auth.js";
import { onAuthStateChanged, getAuth } from
  "https://www.gstatic.com/firebasejs/10.14.1/firebase-auth.js";

protectPage(); // immediately redirects if not signed in

const auth = getAuth();
onAuthStateChanged(auth, (user) => {
  if (user) {
    // render authenticated UI, show user.email
  }
});
// Login / registration pages only
import { redirectIfLoggedIn } from "./auth.js";
redirectIfLoggedIn(); // skip the login form if already authenticated

Third-Party Tool Integrations

The platform’s Herramientas Agenticas catalogue surfaces a curated set of external AI tools, each linked directly from the platform UI. These integrations span productivity, content creation, language models, financial analysis, enterprise assistance, multimodal reasoning, and emotional AI.
ToolCategoryDescriptionURL
Skywork.AIProductivityDocument generation, dynamic presentations, and intelligent data analysisskywork.ai
MiniMaxContent CreationMultimodal AI for text-to-video, image/audio editing, and multi-agent tasksagent.minimax.io
GensparkAgentic ResearchAutonomous AI copilot that researches, reasons, and delivers direct answersgenspark.ai
DeepSeekLanguage ModelsHigh-performance LLM for automation, financial analysis, and cost optimisationchat.deepseek.com
GTChat Financial AgentFinancial AnalysisGTCloud-hosted AI agent for advanced financial data analysis, cost identification, and process value assessmentGTChat Financial Agent
Qwen.AIEnterprise AssistantAdvanced multimodal AI assistant for instant reports, 24/7 support, and complex task automationqwen.ai
Ernie.AIMultimodal AIMultimodal AI platform integrating language, vision, and reasoning for enterprise solutionsernie.baidu.com
Hume.ioEmotional AIEmotionally intelligent agent for interviews, hiring processes, and empathetic AI-driven engagementhume.ai
Each tool card on the platform includes a direct “Discover More” link to the respective service so team members can evaluate and access the tool immediately from within their GTCloud session.

Multi-Agent Workflow Integration

The real power of the GTCloud platform emerges when individual tools are combined into multi-agent pipelines — where two or more specialised AI agents work in concert to deliver an automated, end-to-end business process. The Multi-Agent Workflows section of the platform documents ready-made combinations across key departments:
Agent PairDepartmentWhat It Automates
Jasper + SynthesiaMarketingWritten content → avatar video → scheduled multichannel distribution
Plaid + MiniMaxFinanceReal-time bank connection + predictive cash-flow forecasting and budget alerts
Eightfold + Leena AIHRTalent matching + 24/7 HR chatbot + automated onboarding/offboarding
Apollo.io + LavenderSalesLead enrichment + AI-coached email outreach + multichannel scoring
Project44 + SimpliRouteLogisticsFull supply-chain visibility + optimised last-mile routing + incident resolution
These pipelines are configured inside the platform and require no custom code. When an upstream agent produces output (e.g. Apollo.io enriches a lead), the downstream agent (e.g. Lavender) automatically receives that context and acts on it, reducing manual handoffs and accelerating cycle times across the organisation. Explore all available multi-agent combinations on the Multi-Agent Workflows page.

Enterprise Deployment

GTCloud supports a range of deployment models to meet enterprise security, data-residency, and compliance requirements. Standard platform access uses the shared cloud environment with Firebase-secured identity management. Organisations with stricter requirements can work with the GTCloud team to define custom configurations.
For custom integrations, bespoke agent configurations, or on-premise deployment options, contact the GTCloud team directly at gtcloud.co/contacto. The team will scope your requirements, guide you through available deployment models, and provide a tailored onboarding plan.
Looking for a concrete example of a GTCloud-hosted agent integration? The GTChat Financial Agent — available at tools/gtchat-financial-agent — demonstrates how a fully managed GTCloud agent connects to your financial data, performs advanced analysis, and surfaces actionable insights without any external tooling setup on your side.

Build docs developers (and LLMs) love