
{"id":3542,"date":"2025-03-14T16:00:00","date_gmt":"2025-03-14T23:00:00","guid":{"rendered":"https:\/\/meta-quantum.today\/?p=3542"},"modified":"2025-03-16T16:02:34","modified_gmt":"2025-03-16T23:02:34","slug":"open-manus-ai-easy-install-guide-and-is-it-really-good","status":"publish","type":"post","link":"https:\/\/meta-quantum.today\/?p=3542","title":{"rendered":"Open Manus AI: EASY Install Guide and Is it REALLY Good"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p>This article explores Open Manus AI, an open-source alternative to the popular Manus AI agent system. It guides you through the installation process and evaluates its capabilities compared to the closed-source version. Manus AI has gained significant attention for its ability to automate repetitive tasks using natural language prompts\u2014from planning trips to conducting research.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing OpenManus Locally with Ollama LLM<\/h2>\n\n\n\n<p>I&#8217;ll guide you through setting up OpenManus with Ollama, which will allow you to run everything locally without relying on commercial API keys.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<p>First, make sure you have these installed:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Python 3.10 or higher<\/li>\n\n\n\n<li>Git<\/li>\n\n\n\n<li>Conda (recommended for environment management)<\/li>\n\n\n\n<li>Ollama (for local LLM support)<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install Ollama<\/h3>\n\n\n\n<p>If you haven&#8217;t already installed Ollama:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Visit <a href=\"https:\/\/ollama.ai\/\">ollama.ai<\/a> and download the appropriate version for your OS<\/li>\n\n\n\n<li>Install and run Ollama<\/li>\n\n\n\n<li>Pull a compatible model (I recommend starting with llama3): <code>ollama pull llama3<\/code><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Set Up OpenManus<\/h3>\n\n\n\n<p><strong>Now let&#8217;s install OpenManus:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Create and activate a conda environment\nconda create -n openmanus python=3.10\nconda activate openmanus\n\n# Clone the repository\ngit clone https:\/\/github.com\/mannaandpoem\/OpenManus.git\ncd OpenManus\n\n# Install dependencies\npip install -r requirements.txt\nplaywright install<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Configure OpenManus for Ollama<\/h3>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><strong>Edit the config.toml file to use Ollama:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1. Navigate to the config folder and copy the example config:\n   <span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\">cd config<\/span>\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">cp config.example.toml config.toml<\/span><span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\"><\/span>\n2. Edit the <span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\">config.toml<\/span> file to use Ollama:\n   <span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\">&#91;llm<\/span>]\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">provider = \"ollama\"<\/span>\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">model = \"llama3\"<\/span>\n   base_url = \"http:\/\/localhost:11434\/v1\"<\/span>\n   api_key=\"88888888\"\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">&#91;llm.vision<\/span>]\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">provider = \"ollama\"<\/span>\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">model = \"llama3\" # Or another model with vision capabilities<\/span>\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">base_url = \"http:\/\/localhost:11434\/v1\"<\/span>\n   api_key=\"88888888\"\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">&#91;browser<\/span>]\n   <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">headless = false # Set to true if you don't want to see the browser<\/span><\/code><\/pre>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Run OpenManus<\/h3>\n\n\n\n<p>Now you can run OpenManus:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> cd ..  # Make sure you're in the main openmanus directory\n python main.py<\/code><\/pre>\n\n\n\n<p>The terminal will prompt you to enter a task. Try something simple first, like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    <strong>Find the current weather in Bangkok<\/strong><\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Troubleshooting Common Issues<\/h3>\n\n\n\n<p><strong>Model Response Quality<\/strong>: If responses are inadequate, try a more capable model:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n<span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\">ollama pull llama3:70b # For a larger model<\/span> \n<\/code><\/pre>\n\n\n\n<p>Then update your config.toml to use the new model.<\/p>\n\n\n\n<p><strong>Memory Issues<\/strong>: If you experience out-of-memory errors, adjust your config:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><code>&#91;llm] <\/code>\n<code># Add these lines <\/code>\n<code>context_window = 4096 <\/code>\n<code># Lower this if needed max_tokens = 1000 # Limit token output<\/code>\n<\/code><\/pre>\n\n\n\n<p><strong>Browser Issues<\/strong>: If the browser automation fails:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> <span style=\"background-color: initial; font-family: inherit; font-size: inherit; color: initial;\">playwright install --with-deps chromium<\/span>\n<\/code><\/pre>\n\n\n\n<p><strong>Vision Capabilities<\/strong>: For tasks requiring vision, ensure you use a model with vision support:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  <span style=\"background-color: rgba(0, 0, 0, 0.2); font-family: inherit; font-size: inherit; color: initial;\">ollama pull llama3-vision<\/span> <\/code><\/pre>\n\n\n\n<p>Then update your config.toml to use this model.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Example Use Cases to Try<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Simple web browsing: <br><\/strong><code>Visit wikipedia.org and find information about Singapore's history<\/code><\/li>\n\n\n\n<li><strong>Information gathering: <br><\/strong><code>Research the top 3 tourist destinations in Vietnam<\/code><\/li>\n\n\n\n<li><strong>Simple SEO analysis: <br><\/strong><code>Visit lazada.com.my and analyze its homepage structure<\/code><\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Advanced Configuration<\/h3>\n\n\n\n<p><strong>To improve performance with Ollama, consider these additional config options:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;llm]\nprovider = \"ollama\"\nmodel = \"llama3\"\nbase_url = \"http:\/\/localhost:11434\/api\"\napi_key=\"88888888\"\ntemperature = 0.7\ntop_p = 0.9\nfrequency_penalty = 0.0\npresence_penalty = 0.0\nmax_tokens = 2000<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Video about Install Open Manus and Run Locally:<\/h2>\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=\"Open Manus AI: EASY Install Guide and Is it REALLY Good?\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/FGfIoyO7v5M?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<h2 class=\"wp-block-heading\">Summary of the about Video:<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Open Manus: The Open-Source Alternative<\/h3>\n\n\n\n<p>Open Manus is introduced as a free, open-source alternative that can be run locally. The repository has gained impressive traction with 31,000 stars within days of its launch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Installation Process<\/h3>\n\n\n\n<p>The video provides a step-by-step installation guide:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download and set up a Conda environment<\/li>\n\n\n\n<li>Create a virtual environment specifically for Open Manus<\/li>\n\n\n\n<li>Clone the Open Manus repository<\/li>\n\n\n\n<li>Install required packages using pip<\/li>\n\n\n\n<li>Install Playwright<\/li>\n\n\n\n<li>Configure the settings file with your chosen AI model and API key<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Testing Open Manus<\/h3>\n\n\n\n<p>Tests Open Manus with two main tasks:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>SEO analysis of a website &#8211; Successfully identifies pages and suggests using SEMrush for detailed reports<\/li>\n\n\n\n<li>Finding places to visit in London &#8211; Searches and opens relevant web pages but fails to provide a comprehensive summary, instead only providing URLs<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Limitations and Issues<\/h3>\n\n\n\n<p>Some limitations were noted during testing:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>The task terminated prematurely without providing a proper summary<\/li>\n\n\n\n<li>Potential issues with token limits and model selection<\/li>\n\n\n\n<li>The creator attempted using headless mode and increasing token limits but still encountered problems<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Comparison with Other Solutions<\/h2>\n\n\n\n<p>The video explains that Manus AI essentially consists of multiple AI agents working together with additional tools like browser automation and internet search capabilities. The creator notes that similar functionality could be replicated using other AI agent frameworks, but Manus AI&#8217;s user interface gives it an advantage over command-line alternatives like Open Manus.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">OpenManus AI: Applications and Impact in Southeast Asia (2025-2028)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Key Applications in Southeast Asia<\/h3>\n\n\n\n<p><strong>E-commerce Automation<\/strong><\/p>\n\n\n\n<p>In Southeast Asia&#8217;s rapidly growing e-commerce sector (projected to reach $370B by 2027), OpenManus could transform operations by:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Automating competitive pricing analysis across platforms like Shopee, Lazada, and Tokopedia<\/li>\n\n\n\n<li>Generating localized product descriptions in multiple languages (Thai, Bahasa Indonesia, Vietnamese)<\/li>\n\n\n\n<li>Monitoring customer reviews and providing sentiment analysis<\/li>\n\n\n\n<li>Creating targeted marketing materials based on regional preferences<\/li>\n<\/ol>\n\n\n\n<p><strong>Tourism Industry Enhancement<\/strong><\/p>\n\n\n\n<p>With tourism being a critical economic driver in the region:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Creating personalized itineraries that respect local customs and seasonal events<\/li>\n\n\n\n<li>Automating hotel and attraction comparisons across platforms<\/li>\n\n\n\n<li>Generating real-time travel advisories incorporating weather, political situations, and health concerns<\/li>\n\n\n\n<li>Supporting small tour operators with marketing content generation in multiple languages<\/li>\n<\/ol>\n\n\n\n<p><strong>Agriculture Tech Support<\/strong><\/p>\n\n\n\n<p>For Southeast Asia&#8217;s agricultural economies:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Monitoring crop prices across regional markets<\/li>\n\n\n\n<li>Generating reports on weather patterns and potential impacts on harvests<\/li>\n\n\n\n<li>Automating research on pest control methods specific to tropical climates<\/li>\n\n\n\n<li>Creating educational materials for farmers in local languages<\/li>\n<\/ol>\n\n\n\n<p><strong>Financial Services Accessibility<\/strong><\/p>\n\n\n\n<p>In a region with varying levels of financial inclusion:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Analyzing regulatory frameworks across different Southeast Asian countries<\/li>\n\n\n\n<li>Generating simplified explanations of financial products in local languages<\/li>\n\n\n\n<li>Automating application processes for small business loans<\/li>\n\n\n\n<li>Creating personalized financial education materials for unbanked populations<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Country-Specific Impact<\/h3>\n\n\n\n<p><strong>Singapore<\/strong><\/p>\n\n\n\n<p>As a tech hub with strong AI infrastructure, Singapore will likely see rapid adoption for:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Regulatory compliance automation across ASEAN markets<\/li>\n\n\n\n<li>Enhanced financial analysis for the banking sector<\/li>\n\n\n\n<li>Smart city initiative support through automated data processing<\/li>\n\n\n\n<li>Education personalization for its competitive educational system<\/li>\n<\/ol>\n\n\n\n<p><strong>Indonesia<\/strong><\/p>\n\n\n\n<p>With its large population and diverse geography:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Supporting small business digitalization across thousands of islands<\/li>\n\n\n\n<li>Enhancing supply chain optimization for archipelago logistics<\/li>\n\n\n\n<li>Facilitating government service delivery through automated information gathering<\/li>\n\n\n\n<li>Supporting disaster response through automated information processing<\/li>\n<\/ol>\n\n\n\n<p><strong>Vietnam<\/strong><\/p>\n\n\n\n<p>With its growing tech sector:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Accelerating software development through automated code generation<\/li>\n\n\n\n<li>Supporting manufacturing quality control through automated documentation<\/li>\n\n\n\n<li>Enhancing the growing digital services sector<\/li>\n\n\n\n<li>Facilitating international business expansion through automated research<\/li>\n<\/ol>\n\n\n\n<p><strong>Malaysia<\/strong><\/p>\n\n\n\n<p>Leveraging its diverse economy:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Supporting the halal certification industry through automated compliance checking<\/li>\n\n\n\n<li>Enhancing palm oil industry sustainability reporting<\/li>\n\n\n\n<li>Automating multilingual content creation (Malay, Chinese, Tamil, English)<\/li>\n\n\n\n<li>Supporting digital government initiatives<\/li>\n<\/ol>\n\n\n\n<p><strong>Thailand<\/strong><\/p>\n\n\n\n<p>With its strong tourism and manufacturing sectors:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Enhancing tourism experiences through personalized recommendations<\/li>\n\n\n\n<li>Supporting food export businesses with automated market research<\/li>\n\n\n\n<li>Automating content for the entertainment industry<\/li>\n\n\n\n<li>Facilitating medical tourism through personalized patient journey planning<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Challenges and Considerations<\/h3>\n\n\n\n<p>The adoption of OpenManus in Southeast Asia faces several challenges:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Language Complexity<\/strong>: The region&#8217;s linguistic diversity requires robust multilingual capabilities<\/li>\n\n\n\n<li><strong>Digital Infrastructure<\/strong>: Varying levels of internet reliability and computing resources<\/li>\n\n\n\n<li><strong>Regulatory Frameworks<\/strong>: Different approaches to AI regulation across countries<\/li>\n\n\n\n<li><strong>Digital Skills Gap<\/strong>: Varying technical expertise to implement and maintain these systems<\/li>\n\n\n\n<li><strong>Data Privacy Concerns<\/strong>: Different standards for data protection across the region<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Future Outlook (2025-2028)<\/h2>\n\n\n\n<p>By 2028, we can expect:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A growing ecosystem of Southeast Asia-specific plugins for OpenManus that address regional needs<\/li>\n\n\n\n<li>Integration with local payment systems and government digital services<\/li>\n\n\n\n<li>Enhanced capabilities in Southeast Asian languages, including dialectal variations<\/li>\n\n\n\n<li>Industry-specific implementations, particularly in tourism, agriculture, and e-commerce<\/li>\n\n\n\n<li>Educational programs focused on OpenManus implementation at regional technical universities<\/li>\n<\/ol>\n\n\n\n<p>The open-source nature of OpenManus will be particularly valuable in Southeast Asia, where cost-effectiveness and customization for local needs are essential for technology adoption. As digital transformation continues to accelerate across the region, OpenManus has the potential to democratize access to advanced AI capabilities for businesses of all sizes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>While Open Manus shows promise as a free alternative to Manus AI, it still has areas that need improvement. The creator acknowledges its potential, especially considering its rapid popularity growth, but notes that the current version has limitations in task completion and lacks a user interface.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Takeaways<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Open Manus is a promising open-source alternative to the trending Manus AI<\/li>\n\n\n\n<li>Installation requires some technical knowledge but is straightforward with the provided guide<\/li>\n\n\n\n<li>The system works well for some tasks but has limitations in others<\/li>\n\n\n\n<li>Open Manus currently lacks a user interface and runs via terminal<\/li>\n\n\n\n<li>The technology is essentially a workflow of multiple AI agents with web browsing capabilities<\/li>\n\n\n\n<li>Open Manus is important to SEA Development<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Related References<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><a href=\"https:\/\/github.com\/mannaandpoem\/OpenManus\" target=\"_blank\" rel=\"noopener\" title=\"OpenManus GitHub\">OpenManus GitHub<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/ollama.com\/\" target=\"_blank\" rel=\"noopener\" title=\"Ollama\u5b98\u65b9\u7f51\u7ad9\">Ollama<\/a><\/li>\n<\/ol>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p># OpenManus: Local AI Revolution<\/p>\n<p>OpenManus brings autonomous AI agents to your desktop, free from API costs. With Ollama integration, it navigates websites, researches topics, and generates reports through natural language commands. Despite being in early development, it&#8217;s already transforming workflows across Southeast Asia, from automating e-commerce analysis in Singapore to supporting agricultural decisions in Vietnam. While installation requires technical knowledge, the system&#8217;s ability to operate entirely offline makes it particularly valuable in regions with connectivity challenges.<\/p>\n","protected":false},"author":1,"featured_media":3557,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15,18,13,21],"tags":[],"class_list":["post-3542","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ai","category-education","category-quantum-and-u","category-sea"],"aioseo_notices":[],"featured_image_src":"https:\/\/meta-quantum.today\/wp-content\/uploads\/2025\/03\/OpenManus-install-locally.jpg","featured_image_src_square":"https:\/\/meta-quantum.today\/wp-content\/uploads\/2025\/03\/OpenManus-install-locally.jpg","author_info":{"display_name":"coffee","author_link":"https:\/\/meta-quantum.today\/?author=1"},"rbea_author_info":{"display_name":"coffee","author_link":"https:\/\/meta-quantum.today\/?author=1"},"rbea_excerpt_info":"# OpenManus: Local AI Revolution\n\nOpenManus brings autonomous AI agents to your desktop, free from API costs. With Ollama integration, it navigates websites, researches topics, and generates reports through natural language commands. Despite being in early development, it's already transforming workflows across Southeast Asia, from automating e-commerce analysis in Singapore to supporting agricultural decisions in Vietnam. While installation requires technical knowledge, the system's ability to operate entirely offline makes it particularly valuable in regions with connectivity challenges.","category_list":"<a href=\"https:\/\/meta-quantum.today\/?cat=15\" rel=\"category\">AI<\/a>, <a href=\"https:\/\/meta-quantum.today\/?cat=18\" rel=\"category\">Education<\/a>, <a href=\"https:\/\/meta-quantum.today\/?cat=13\" rel=\"category\">Quantum and U<\/a>, <a href=\"https:\/\/meta-quantum.today\/?cat=21\" rel=\"category\">SEA<\/a>","comments_num":"0 comments","_links":{"self":[{"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/posts\/3542","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3542"}],"version-history":[{"count":23,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/posts\/3542\/revisions"}],"predecessor-version":[{"id":3596,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/posts\/3542\/revisions\/3596"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=\/wp\/v2\/media\/3557"}],"wp:attachment":[{"href":"https:\/\/meta-quantum.today\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3542"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3542"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/meta-quantum.today\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3542"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}