{"id":130,"date":"2026-03-20T05:36:38","date_gmt":"2026-03-20T05:36:38","guid":{"rendered":"https:\/\/tokita.online\/?p=130"},"modified":"2026-05-12T03:31:28","modified_gmt":"2026-05-12T03:31:28","slug":"ai-expert-philippines","status":"publish","type":"post","link":"https:\/\/tokita.online\/ai-expert-philippines\/","title":{"rendered":"What Running AI in Production Taught Me That No Philippine Hackathon Will"},"content":{"rendered":"<p><strong>The Philippines has the highest AI adoption rate in ASEAN.<\/strong> 92%, according to the <a href=\"https:\/\/www.swarm.work\/blog\/philippine-ai-report-2025-press-release\">2025 Philippine AI Report<\/a>. That number sounds impressive until you read the next line.<\/p>\n<p><strong><a href=\"https:\/\/www.swarm.work\/blog\/philippine-ai-report-2025-press-release\">65% of those organizations are stuck in pilot.<\/a><\/strong><\/p>\n<p>Not scaling. Not in production. Piloting. Running POCs that never graduate. Building demos that never see real users. And the pattern repeats: another hackathon, another pitch deck, another POC competing for the same thin use case.<\/p>\n<p>I&#8217;ve watched this from the inside since 2024, running an enterprise consulting firm in Manila while building AI operations infrastructure that I use in production every day. What I&#8217;ve seen is a country full of smart builders solving the wrong layer of the problem.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<h2>The POC Trap<\/h2>\n<p>Someone discovers Lovable, Replit, or Bolt. They build something in a weekend: a chatbot, a document processor, a &#8220;smart&#8221; dashboard. It works. They demo it. Maybe it wins a competition.<\/p>\n<p>Then reality hits.<\/p>\n<p>The app needs to handle more than 10 users. It needs to connect to an actual database that isn&#8217;t a Google Sheet. It needs authentication, logging, error handling, monitoring. It needs to run when the builder isn&#8217;t watching.<\/p>\n<p><strong>And this is where 65% of Philippine AI projects die.<\/strong> The idea was fine. The builder was talented. But nobody planned for what happens after &#8220;it works on my machine.&#8221;<\/p>\n<p>The problem isn&#8217;t intelligence. The Philippines has no shortage of skilled developers. The problem is that the entire ecosystem is optimized for building demos, not running systems.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<h2>What Running AI in Production Actually Requires<\/h2>\n<p><strong>It&#8217;s not a tools problem.<\/strong> The Philippines doesn&#8217;t need another chatbot builder or another &#8220;AI-powered&#8221; SaaS product chasing the same narrow market.<\/p>\n<p>What&#8217;s missing is the boring stuff. The stuff that doesn&#8217;t win hackathons or trend on LinkedIn:<\/p>\n<p><strong>1. Context management.<\/strong> LLMs forget everything between conversations. If your AI system can&#8217;t maintain context across sessions (what your organization has decided, what&#8217;s been tried, what failed), you&#8217;re starting from zero every time. I wrote about this in depth: <a href=\"\/context-engineering-vs-prompt-engineering\/\">context engineering<\/a> is infrastructure, not prompting. It&#8217;s the difference between an AI that gives generic answers and one that gives useful ones.<\/p>\n<p><strong>2. Anti-fabrication.<\/strong> AI makes things up. Everyone knows this. Almost nobody builds mechanical systems to catch it. Every data point needs a source. Every claim needs evidence. Every &#8220;I don&#8217;t know&#8221; needs to actually say &#8220;I don&#8217;t know&#8221; instead of guessing confidently. This isn&#8217;t a prompt engineering problem. It&#8217;s an <a href=\"\/ai-agent-production-safety\/\">architecture problem<\/a> that I&#8217;ve written about extensively, including the time <a href=\"\/ai-agent-production-safety\/\">an AI agent deleted a production database in 9 seconds<\/a> because nobody built a gate to stop it.<\/p>\n<p><strong>3. Operational persistence.<\/strong> Your AI assistant is useless if it loses its memory every time the session ends. The knowledge captured last Tuesday needs to be available next Thursday. The decision made in one project needs to inform work in another. This requires persistent storage, indexing, and retrieval systems. None of that comes free with an API key.<\/p>\n<p><strong>4. Multi-system orchestration.<\/strong> Real work doesn&#8217;t happen inside a single app. It happens across Salesforce, Jira, Google Workspace, SSH connections, deployment pipelines. An AI that can write a nice email but can&#8217;t check your CRM, update your tickets, or deploy code isn&#8217;t an <a href=\"\/llm-wrappers-what-actually-matters\/\">operations system<\/a>. It&#8217;s a toy. I call the discipline of wiring all of this together <a href=\"\/what-is-harness-engineering\/\">&#8220;harness engineering&#8221;<\/a>: building the scaffolding that turns raw AI capability into something that actually runs your day.<\/p>\n<p><strong>5. Failure handling.<\/strong> What happens when the AI gets stuck? What happens when it loops? What happens when it fabricates a method name that doesn&#8217;t exist and tries to call it? Production AI systems need circuit breakers, escalation paths, and the humility to stop and ask for help. I&#8217;ve written a full <a href=\"\/ai-agent-pre-action-gate-tutorial\/\">tutorial on building pre-action gates<\/a> for exactly this reason, and <a href=\"https:\/\/github.com\/tomtokitajr\/ai-agent-gates\">open-sourced the code<\/a> because it&#8217;s too important to keep proprietary.<\/p>\n<p><strong>6. Supply chain security.<\/strong> This one is new, and most builders aren&#8217;t thinking about it yet. AI tools pull in skills, plugins, and integrations from registries that nobody audits. I cataloged <a href=\"\/ai-supply-chain-attack-575-malicious-skills\/\">575 malicious AI skills in a single tool registry<\/a>. Prompt injection, data exfiltration, credential theft, all hiding behind legitimate-looking tool descriptions. If your AI system connects to external tools, you need a security posture for that. Most don&#8217;t have one.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<h2>What I&#8217;m Building (and Sharing)<\/h2>\n<p>I run <a href=\"https:\/\/aether-global.com\">Aether Global Technology Inc.<\/a>, a Salesforce consulting firm in Manila. Over 14+ years in enterprise tech, I&#8217;ve led deployments for clients in aviation, banking, pharmaceutical, healthcare, logistics, and legal sectors, including a record-time Salesforce Service Cloud deployment across 3 call centers in 89 days for a major national airline.<\/p>\n<p>Separately from client work, I&#8217;ve spent the past year building a personal AI operations system. I don&#8217;t sell it. I use it. A daily driver that I built because nothing on the market solved the actual problem: <strong>how do you run a complex operation when you&#8217;re wearing 10 hats and can&#8217;t afford to lose context?<\/strong><\/p>\n<p>The answer wasn&#8217;t a better chatbot. It was infrastructure. Persistent memory that survives session boundaries. Mechanical gates that prevent fabrication. Agent orchestration that coordinates work across platforms. Failure handling that stops loops before they waste hours.<\/p>\n<p>I didn&#8217;t build this because it was trendy. I built it because I was drowning without it.<\/p>\n<p><strong>And I&#8217;m publishing what I learn.<\/strong> Since March 2026, I&#8217;ve written <a href=\"\/blog\/\">14 technical articles<\/a> on production AI patterns, from <a href=\"\/why-multi-agent-ai-fails\/\">why multi-agent AI fails<\/a> to <a href=\"\/vibe-coding-risks-vercel-breach\/\">the security risks of vibe coding<\/a> to <a href=\"\/ai-implementation-mistakes-build-addiction\/\">why rip-and-replace AI strategies are a $547 billion mistake<\/a>. I&#8217;ve cross-posted to <a href=\"https:\/\/dev.to\/tomtokita\">Dev.to<\/a> for the developer community. I&#8217;ve <a href=\"https:\/\/github.com\/tomtokitajr\/ai-agent-gates\">open-sourced my pre-action gate library<\/a> because some patterns are too important to keep behind closed doors. And I presented &#8220;The Agentic AI Landscape&#8221; at the LivePerson x Aether enterprise event in Makati.<\/p>\n<p>Volume doesn&#8217;t matter. What matters is that everything I write about is something I built, broke, fixed, and run daily. That&#8217;s the difference between an AI expert who presents and one who practices.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<h2>Why the Philippines Needs AI Operations, Not More AI Apps<\/h2>\n<p><strong>The Philippines is at 92% AI adoption.<\/strong> That&#8217;s remarkable. But adoption isn&#8217;t the same as capability.<\/p>\n<p>The country has over a thousand AI startups. <a href=\"https:\/\/www.bworldonline.com\/technology\/2026\/03\/19\/737161\/7-filipino-ai-startups-head-to-gitex-ai-asia\/\">Seven just went to GITEX Asia<\/a>. The government launched the <a href=\"https:\/\/businessmirror.com.ph\/2026\/02\/22\/dost-to-launch-central-hub-for-ai\/\">National AI Centre (NAICRI)<\/a>. There are <a href=\"https:\/\/mb.com.ph\/2026\/02\/23\/a-roadmap-to-transform-the-country-from-fast-ai-adopters-to-sovereign-builders\">19 AI bills pending in Congress<\/a>. The numbers look good.<\/p>\n<p>But underneath?<\/p>\n<ul>\n<li><a href=\"https:\/\/www.swarm.work\/blog\/philippine-ai-report-2025-press-release\">Most organizations use GenAI for drafting emails and internal memos<\/a><\/li>\n<li>Only <a href=\"https:\/\/techsabado.com\/2026\/02\/25\/special-report-philippine-ai-adoption-at-92-but-scaling-stuck-in-pilot-stage\/\">12% use heavy-duty development frameworks<\/a><\/li>\n<li>Brain drain pulls senior engineers overseas<\/li>\n<li>Electricity costs are <a href=\"https:\/\/amro-asia.org\/can-the-philippines-it-bpm-industry-stay-ahead-amid-the-ai-wave\/\">among the highest in Southeast Asia<\/a><\/li>\n<li>No national AI coordinating body exists yet<\/li>\n<\/ul>\n<p><strong>Tools and talent exist. Systems thinking doesn&#8217;t.<\/strong><\/p>\n<p>The Philippines doesn&#8217;t need more AI apps. It needs people who understand what happens between &#8220;the demo works&#8221; and &#8220;it runs reliably in production, unsupervised, at scale.&#8221; That&#8217;s not a technology problem. It&#8217;s an engineering discipline.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<h2>The Survival Engineer Frame<\/h2>\n<p>I call this &#8220;survival engineering.&#8221; Not because it sounds good. Because it&#8217;s accurate.<\/p>\n<p>When you&#8217;re the CEO of a small firm competing against companies 50 times your size, you don&#8217;t have the luxury of building AI for fun. You build it because if you don&#8217;t, you literally cannot keep up with the workload. Every system you build has to work tomorrow morning. Every automation has to handle the edge case your client throws at you on Friday at 5pm.<\/p>\n<p>This is different from building a POC for a pitch deck. This is production AI for a practitioner who can&#8217;t afford downtime.<\/p>\n<p>That pressure produces different engineering. You build <a href=\"\/ai-agent-pre-action-gate-tutorial\/\">pre-action gates<\/a> because you&#8217;ve seen what happens without them. You build <a href=\"\/what-is-harness-engineering\/\">harnesses<\/a> because raw model output isn&#8217;t reliable enough to bet your business on. You build <a href=\"\/context-engineering-vs-prompt-engineering\/\">context infrastructure<\/a> because starting from scratch every morning wastes the two hours you don&#8217;t have.<\/p>\n<p>The Philippines has plenty of people who can build the demo. The country needs practitioners who build what comes after: the operations infrastructure that keeps systems running, learning, and scaling without burning everything down.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<h2>What I&#8217;d Tell a Filipino Builder Starting Today<\/h2>\n<p><strong>Stop building apps. Start building systems.<\/strong><\/p>\n<ul>\n<li>Don&#8217;t ship a chatbot. Ship a chatbot with persistent memory, source attribution, and failure handling.<\/li>\n<li>Don&#8217;t build another POC. Build something that <a href=\"\/what-is-harness-engineering\/\">orchestrates three existing tools<\/a> into a workflow that didn&#8217;t exist before.<\/li>\n<li>Don&#8217;t optimize your prompt. Optimize the <a href=\"\/context-engineering-vs-prompt-engineering\/\">infrastructure that feeds your prompt<\/a> the right context at the right time.<\/li>\n<li>Don&#8217;t chase the next framework. Master the boring fundamentals: error handling, logging, state management, graceful degradation.<\/li>\n<li>Don&#8217;t trust your AI blindly. Build <a href=\"\/ai-agent-pre-action-gate-tutorial\/\">gates that catch it<\/a> before it does something irreversible.<\/li>\n<li>Don&#8217;t ignore the supply chain. Know <a href=\"\/ai-supply-chain-attack-575-malicious-skills\/\">what&#8217;s in your tool registry<\/a> before you let your AI call external services.<\/li>\n<\/ul>\n<p>The market is flooded with people who can build v1. Very few (in the Philippines or anywhere) can keep v1 running, improve it to v2, and scale it to v10 without burning everything down.<\/p>\n<p>That&#8217;s where the real value is. And that&#8217;s the kind of AI expertise the Philippines actually needs.<\/p>\n<p>If you want to vet an AI consultant before hiring one, I wrote a <a href=\"\/ai-consultant-philippines\/\">7-question framework<\/a> for exactly that. And if you&#8217;re building AI systems for Philippine enterprises and want to compare notes, <a href=\"\/contact\/\">I&#8217;m always up for a conversation<\/a>.<\/p>\n<hr style=\"border: none; border-top: 1px solid #eee; margin: 32px 0;\" \/>\n<p><em>Tom Tokita is the President and CEO of <a href=\"https:\/\/aether-global.com\">Aether Global Technology Inc.<\/a>, a Salesforce consulting firm in Manila. He builds AI operations infrastructure as a daily practice and publishes technical articles, open-source tools, and production patterns at <a href=\"https:\/\/tokita.online\">tokita.online<\/a>. Connect at <a href=\"mailto:tom@tokita.online\">tom@tokita.online<\/a>.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The Philippines has the highest AI adoption rate in ASEAN. 92%, according to the 2025 Philippine AI Report. That number sounds impressive until you read the next line. 65% of those organizations are stuck in pilot. Not scaling. Not in production. Piloting. Running POCs that never graduate. Building demos that never see real users. And the pattern repeats: another hackathon, another pitch deck, another POC competing for the same thin use case. I&#8217;ve watched this from the inside since 2024, running an enterprise consulting firm in Manila while building AI operations infrastructure that I use in production every day. What I&#8217;ve seen is a country full of smart builders solving the wrong layer of the problem. The POC Trap Someone discovers Lovable, Replit, or Bolt. They build something in a weekend: a chatbot, a document processor, a &#8220;smart&#8221; dashboard. It works. They demo it. Maybe it wins a competition. Then reality hits. The app needs to handle more than 10 users. It needs to connect to an actual database that isn&#8217;t a Google Sheet. It needs authentication, logging, error handling, monitoring. It needs to run when the builder isn&#8217;t watching. And this is where 65% of Philippine AI projects die. The idea was fine. The builder was talented. But nobody planned for what happens after &#8220;it works on my machine.&#8221; The problem isn&#8217;t intelligence. The Philippines has no shortage of skilled developers. The problem is that the entire ecosystem is optimized for building demos, not running systems. What Running AI in Production Actually Requires It&#8217;s not a tools problem. The Philippines doesn&#8217;t need another chatbot builder or another &#8220;AI-powered&#8221; SaaS product chasing the same narrow market. What&#8217;s missing is the boring stuff. The stuff that doesn&#8217;t win hackathons or trend on LinkedIn: 1. Context management. LLMs forget everything between conversations. If your AI system can&#8217;t maintain context across sessions (what your organization has decided, what&#8217;s been tried, what failed), you&#8217;re starting from zero every time. I wrote about this in depth: context engineering is infrastructure, not prompting. It&#8217;s the difference between an AI that gives generic answers and one that gives useful ones. 2. Anti-fabrication. AI makes things up. Everyone knows this. Almost nobody builds mechanical systems to catch it. Every data point needs a source. Every claim needs evidence. Every &#8220;I don&#8217;t know&#8221; needs to actually say &#8220;I don&#8217;t know&#8221; instead of guessing confidently. This isn&#8217;t a prompt engineering problem. It&#8217;s an architecture problem that I&#8217;ve written about extensively, including the time an AI agent deleted a production database in 9 seconds because nobody built a gate to stop it. 3. Operational persistence. Your AI assistant is useless if it loses its memory every time the session ends. The knowledge captured last Tuesday needs to be available next Thursday. The decision made in one project needs to inform work in another. This requires persistent storage, indexing, and retrieval systems. None of that comes free with an API key. 4. Multi-system orchestration. Real work doesn&#8217;t happen inside a single app. It happens across Salesforce, Jira, Google Workspace, SSH connections, deployment pipelines. An AI that can write a nice email but can&#8217;t check your CRM, update your tickets, or deploy code isn&#8217;t an operations system. It&#8217;s a toy. I call the discipline of wiring all of this together &#8220;harness engineering&#8221;: building the scaffolding that turns raw AI capability into something that actually runs your day. 5. Failure handling. What happens when the AI gets stuck? What happens when it loops? What happens when it fabricates a method name that doesn&#8217;t exist and tries to call it? Production AI systems need circuit breakers, escalation paths, and the humility to stop and ask for help. I&#8217;ve written a full tutorial on building pre-action gates for exactly this reason, and open-sourced the code because it&#8217;s too important to keep proprietary. 6. Supply chain security. This one is new, and most builders aren&#8217;t thinking about it yet. AI tools pull in skills, plugins, and integrations from registries that nobody audits. I cataloged 575 malicious AI skills in a single tool registry. Prompt injection, data exfiltration, credential theft, all hiding behind legitimate-looking tool descriptions. If your AI system connects to external tools, you need a security posture for that. Most don&#8217;t have one. What I&#8217;m Building (and Sharing) I run Aether Global Technology Inc., a Salesforce consulting firm in Manila. Over 14+ years in enterprise tech, I&#8217;ve led deployments for clients in aviation, banking, pharmaceutical, healthcare, logistics, and legal sectors, including a record-time Salesforce Service Cloud deployment across 3 call centers in 89 days for a major national airline. Separately from client work, I&#8217;ve spent the past year building a personal AI operations system. I don&#8217;t sell it. I use it. A daily driver that I built because nothing on the market solved the actual problem: how do you run a complex operation when you&#8217;re wearing 10 hats and can&#8217;t afford to lose context? The answer wasn&#8217;t a better chatbot. It was infrastructure. Persistent memory that survives session boundaries. Mechanical gates that prevent fabrication. Agent orchestration that coordinates work across platforms. Failure handling that stops loops before they waste hours. I didn&#8217;t build this because it was trendy. I built it because I was drowning without it. And I&#8217;m publishing what I learn. Since March 2026, I&#8217;ve written 14 technical articles on production AI patterns, from why multi-agent AI fails to the security risks of vibe coding to why rip-and-replace AI strategies are a $547 billion mistake. I&#8217;ve cross-posted to Dev.to for the developer community. I&#8217;ve open-sourced my pre-action gate library because some patterns are too important to keep behind closed doors. And I presented &#8220;The Agentic AI Landscape&#8221; at the LivePerson x Aether enterprise event in Makati. Volume doesn&#8217;t matter. What matters is that everything I write about is something I built, broke, fixed, and run daily. That&#8217;s the difference between an AI expert who presents and one who practices. Why the Philippines Needs AI Operations, Not More AI Apps The Philippines is at<\/p>\n","protected":false},"author":1,"featured_media":133,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-130","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Running AI in Production Philippines: What Hackathons Won&#039;t Teach<\/title>\n<meta name=\"description\" content=\"92% of Philippine organizations tried AI. 65% stuck in pilot. This is what it actually takes to run AI in production, from someone who does it daily.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tokita.online\/ai-expert-philippines\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Running AI in Production Philippines: What Hackathons Won&#039;t Teach\" \/>\n<meta property=\"og:description\" content=\"92% of Philippine organizations tried AI. 65% stuck in pilot. This is what it actually takes to run AI in production, from someone who does it daily.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tokita.online\/ai-expert-philippines\/\" \/>\n<meta property=\"og:site_name\" content=\"Tom Tokita\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-20T05:36:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-12T03:31:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/featured-ai-expert-philippines.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"1024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Tom Tokita\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Tom Tokita\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Running AI in Production Philippines: What Hackathons Won't Teach","description":"92% of Philippine organizations tried AI. 65% stuck in pilot. This is what it actually takes to run AI in production, from someone who does it daily.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tokita.online\/ai-expert-philippines\/","og_locale":"en_US","og_type":"article","og_title":"Running AI in Production Philippines: What Hackathons Won't Teach","og_description":"92% of Philippine organizations tried AI. 65% stuck in pilot. This is what it actually takes to run AI in production, from someone who does it daily.","og_url":"https:\/\/tokita.online\/ai-expert-philippines\/","og_site_name":"Tom Tokita","article_published_time":"2026-03-20T05:36:38+00:00","article_modified_time":"2026-05-12T03:31:28+00:00","og_image":[{"width":1024,"height":1024,"url":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/featured-ai-expert-philippines.jpg","type":"image\/jpeg"}],"author":"Tom Tokita","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Tom Tokita","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tokita.online\/ai-expert-philippines\/#article","isPartOf":{"@id":"https:\/\/tokita.online\/ai-expert-philippines\/"},"author":{"name":"Tom Tokita","@id":"https:\/\/tokita.online\/#\/schema\/person\/b420ed074b20ee6cb7a1f0f11c8dacdd"},"headline":"What Running AI in Production Taught Me That No Philippine Hackathon Will","datePublished":"2026-03-20T05:36:38+00:00","dateModified":"2026-05-12T03:31:28+00:00","mainEntityOfPage":{"@id":"https:\/\/tokita.online\/ai-expert-philippines\/"},"wordCount":1620,"publisher":{"@id":"https:\/\/tokita.online\/#organization"},"image":{"@id":"https:\/\/tokita.online\/ai-expert-philippines\/#primaryimage"},"thumbnailUrl":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/featured-ai-expert-philippines.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/tokita.online\/ai-expert-philippines\/","url":"https:\/\/tokita.online\/ai-expert-philippines\/","name":"Running AI in Production Philippines: What Hackathons Won't Teach","isPartOf":{"@id":"https:\/\/tokita.online\/#website"},"primaryImageOfPage":{"@id":"https:\/\/tokita.online\/ai-expert-philippines\/#primaryimage"},"image":{"@id":"https:\/\/tokita.online\/ai-expert-philippines\/#primaryimage"},"thumbnailUrl":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/featured-ai-expert-philippines.jpg","datePublished":"2026-03-20T05:36:38+00:00","dateModified":"2026-05-12T03:31:28+00:00","description":"92% of Philippine organizations tried AI. 65% stuck in pilot. This is what it actually takes to run AI in production, from someone who does it daily.","breadcrumb":{"@id":"https:\/\/tokita.online\/ai-expert-philippines\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tokita.online\/ai-expert-philippines\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tokita.online\/ai-expert-philippines\/#primaryimage","url":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/featured-ai-expert-philippines.jpg","contentUrl":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/featured-ai-expert-philippines.jpg","width":1024,"height":1024,"caption":"AI infrastructure Philippines"},{"@type":"BreadcrumbList","@id":"https:\/\/tokita.online\/ai-expert-philippines\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tokita.online\/"},{"@type":"ListItem","position":2,"name":"What Running AI in Production Taught Me That No Philippine Hackathon Will"}]},{"@type":"WebSite","@id":"https:\/\/tokita.online\/#website","url":"https:\/\/tokita.online\/","name":"Tom Tokita","description":"","publisher":{"@id":"https:\/\/tokita.online\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tokita.online\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tokita.online\/#organization","name":"Tom Tokita","url":"https:\/\/tokita.online\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tokita.online\/#\/schema\/logo\/image\/","url":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/tokita-logo-clear-cropped.webp","contentUrl":"https:\/\/tokita.online\/wp-content\/uploads\/2026\/03\/tokita-logo-clear-cropped.webp","width":474,"height":151,"caption":"Tom Tokita"},"image":{"@id":"https:\/\/tokita.online\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/tokita.online\/#\/schema\/person\/b420ed074b20ee6cb7a1f0f11c8dacdd","name":"Tom Tokita","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1be5e8ad1bd8baf1b5103aa27f1190be4ad3ede9953719e4c3540813988094aa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1be5e8ad1bd8baf1b5103aa27f1190be4ad3ede9953719e4c3540813988094aa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1be5e8ad1bd8baf1b5103aa27f1190be4ad3ede9953719e4c3540813988094aa?s=96&d=mm&r=g","caption":"Tom Tokita"},"sameAs":["https:\/\/tokita.online"],"url":"https:\/\/tokita.online\/author\/t-tokitajr\/"}]}},"_links":{"self":[{"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/posts\/130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tokita.online\/?rest_route=%2Fwp%2Fv2%2Fcomments&post=130"}],"version-history":[{"count":7,"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/posts\/130\/revisions"}],"predecessor-version":[{"id":228,"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/posts\/130\/revisions\/228"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/tokita.online\/?rest_route=\/wp\/v2\/media\/133"}],"wp:attachment":[{"href":"https:\/\/tokita.online\/?rest_route=%2Fwp%2Fv2%2Fmedia&parent=130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tokita.online\/?rest_route=%2Fwp%2Fv2%2Fcategories&post=130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tokita.online\/?rest_route=%2Fwp%2Fv2%2Ftags&post=130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}