{"id":377,"date":"2026-07-05T12:08:47","date_gmt":"2026-07-05T12:08:47","guid":{"rendered":"https:\/\/globalsolidarity.live\/aiearth\/?p=377"},"modified":"2026-07-05T13:43:21","modified_gmt":"2026-07-05T13:43:21","slug":"multi-ai-router","status":"publish","type":"post","link":"https:\/\/globalsolidarity.live\/aiearth\/automation\/multi-ai-router\/","title":{"rendered":"MULTI AI ROUTER"},"content":{"rendered":"\n<div style=\"background:#111;color:white;padding:25px;border-radius:12px;max-width:1000px;margin:auto;font-family:Arial\">\n\n<h2 style=\"color:#ffd700;text-align:center\">SpaceArch Multi AI Router<\/h2>\n<p style=\"text-align:center\">BYOAI \u2014 User Powered Artificial Intelligence<\/p>\n\n<textarea id=\"prompt\" style=\"width:100%;height:120px;background:#222;color:white\" placeholder=\"Write your prompt...\"><\/textarea>\n\n<h3>AI Engines (1-10)<\/h3>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 1<\/b><br>\n\n<input id=\"name1\" placeholder=\"Name\">\n<input id=\"url1\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model1\" placeholder=\"Model\">\n<br><br>\n<input id=\"key1\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 2<\/b><br>\n\n<input id=\"name2\" placeholder=\"Name\">\n<input id=\"url2\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model2\" placeholder=\"Model\">\n<br><br>\n<input id=\"key2\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 3<\/b><br>\n\n<input id=\"name3\" placeholder=\"Name\">\n<input id=\"url3\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model3\" placeholder=\"Model\">\n<br><br>\n<input id=\"key3\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 4<\/b><br>\n\n<input id=\"name4\" placeholder=\"Name\">\n<input id=\"url4\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model4\" placeholder=\"Model\">\n<br><br>\n<input id=\"key4\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 5<\/b><br>\n\n<input id=\"name5\" placeholder=\"Name\">\n<input id=\"url5\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model5\" placeholder=\"Model\">\n<br><br>\n<input id=\"key5\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 6<\/b><br>\n\n<input id=\"name6\" placeholder=\"Name\">\n<input id=\"url6\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model6\" placeholder=\"Model\">\n<br><br>\n<input id=\"key6\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 7<\/b><br>\n\n<input id=\"name7\" placeholder=\"Name\">\n<input id=\"url7\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model7\" placeholder=\"Model\">\n<br><br>\n<input id=\"key7\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 8<\/b><br>\n\n<input id=\"name8\" placeholder=\"Name\">\n<input id=\"url8\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model8\" placeholder=\"Model\">\n<br><br>\n<input id=\"key8\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 9<\/b><br>\n\n<input id=\"name9\" placeholder=\"Name\">\n<input id=\"url9\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model9\" placeholder=\"Model\">\n<br><br>\n<input id=\"key9\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n<div style=\"border:1px solid #444;margin:8px;padding:10px\">\n<b>AI 10<\/b><br>\n\n<input id=\"name10\" placeholder=\"Name\">\n<input id=\"url10\" placeholder=\"API URL\" style=\"width:35%\">\n<input id=\"model10\" placeholder=\"Model\">\n<br><br>\n<input id=\"key10\" placeholder=\"API Key\" type=\"password\" style=\"width:90%\">\n<\/div>\n\n\n\n<h3>Processing Mode<\/h3>\n\n<label>\n<input type=\"radio\" name=\"rec\" value=\"1\" checked>\nLevel 1 \u2014 Direct Multi AI Answers (lowest cost)\n<\/label><br>\n\n<label>\n<input type=\"radio\" name=\"rec\" value=\"2\">\nLevel 2 \u2014 AI Review & Optimization (extra AI calls)\n<\/label><br>\n\n<label>\n<input type=\"radio\" name=\"rec\" value=\"3\">\nLevel 3 \u2014 Deep Consensus + Final Synthesis (maximum quality \/ higher cost)\n<\/label>\n\n<br><br>\n\n<button id=\"runAI\" style=\"background:#ffd700;padding:15px;font-weight:bold\">\nRUN MULTI AI\n<\/button>\n\n<div id=\"result\" style=\"background:#222;margin-top:20px;padding:20px\"><\/div>\n\n<\/div>\n\n\n<script>\n\ndocument.getElementById(\"runAI\").onclick=async()=>{\n\nlet engines=[];\n\nfor(let i=1;i<=10;i++){\n\nlet key=document.getElementById(\"key\"+i).value;\n\nif(key){\n\nengines.push({\nname:document.getElementById(\"name\"+i).value,\nurl:document.getElementById(\"url\"+i).value,\nmodel:document.getElementById(\"model\"+i).value,\nkey:key\n});\n\n}\n\n}\n\nlet level=document.querySelector('input[name=\"rec\"]:checked').value;\n\nresult.innerHTML=\"Processing...\";\n\nlet r=await fetch(\"https:\/\/globalsolidarity.live\/aiearth\/wp-admin\/admin-ajax.php\",{\n\nmethod:\"POST\",\nheaders:{\"Content-Type\":\"application\/x-www-form-urlencoded\"},\n\nbody:new URLSearchParams({\naction:\"spacearch_multi_ai_run\",\nprompt:prompt.value,\nlevel:level,\nengines:JSON.stringify(engines)\n})\n\n});\n\nlet data=await r.json();\n\nresult.innerHTML=\"<pre style='white-space:pre-wrap;color:white'>\"+data.answer+\"<\/pre>\";\n\n}\n\n<\/script>\n\n\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"\ud83d\udd4a\ufe0f \ud83d\udd25 \ud83d\udc96\ud83c\udf38\ud83c\udf1f \ud83d\udc95\u2728We Love Mar del Plata: Amanecer del Octavo D\u00eda en toda la Creaci\u00f3n\" width=\"640\" height=\"360\" src=\"https:\/\/www.youtube.com\/embed\/YNH_NjMdRcs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/globalsolidarity.live\/maitreyamusic\/macromedia\/radio-maitreya-aimusic\/\"><img decoding=\"async\" src=\"https:\/\/globalsolidarity.live\/maitreyamusic\/wp-content\/uploads\/2026\/06\/mradio777-1024x564.jpg\" alt=\"\"\/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.globalsolidarity.live\/panlatam\/news\/459\/\"><img decoding=\"async\" src=\"https:\/\/globalsolidarity.live\/maitreyamusic\/wp-content\/uploads\/2026\/05\/macromedia001ok-1024x469.jpg\" alt=\"\"\/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-ecobuddha-maitreya-music wp-block-embed-ecobuddha-maitreya-music\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"gxl5OeWW2Y\"><a href=\"https:\/\/globalsolidarity.live\/maitreyamusic\/ai\/%f0%9f%9a%80-branded-music-content-network\/\">\ud83d\ude80 Branded Music Content Network<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"\u201c\ud83d\ude80 Branded Music Content Network\u201d \u2014 EcoBuddha Maitreya Music\" src=\"https:\/\/globalsolidarity.live\/maitreyamusic\/ai\/%f0%9f%9a%80-branded-music-content-network\/embed\/#?secret=rfYnxY32MD#?secret=gxl5OeWW2Y\" data-secret=\"gxl5OeWW2Y\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,15],"tags":[],"class_list":["post-377","post","type-post","status-publish","format-standard","hentry","category-automation","category-intelligent-workspaces"],"_links":{"self":[{"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/posts\/377","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/comments?post=377"}],"version-history":[{"count":2,"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/posts\/377\/revisions"}],"predecessor-version":[{"id":381,"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/posts\/377\/revisions\/381"}],"wp:attachment":[{"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/media?parent=377"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/categories?post=377"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/globalsolidarity.live\/aiearth\/wp-json\/wp\/v2\/tags?post=377"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}