[{"data":1,"prerenderedAt":471},["ShallowReactive",2],{"navigation":3,"blog":59,"\u002Fblog":72},[4,27,34],{"title":5,"path":6,"stem":7,"children":8,"icon":26},"Getting Started","\u002Fdocs\u002Fgetting-started","1.docs\u002F1.getting-started\u002F1.index",[9,11,16,21],{"title":5,"path":6,"stem":7,"icon":10},"mdi-home",{"title":12,"path":13,"stem":14,"icon":15},"Installation","\u002Fdocs\u002Fgetting-started\u002Finstallation","1.docs\u002F1.getting-started\u002F2.installation","mdi-download",{"title":17,"path":18,"stem":19,"icon":20},"Token Counting","\u002Fdocs\u002Fgetting-started\u002Ftoken-counting","1.docs\u002F1.getting-started\u002F2.token-counting","mdi-hash",{"title":22,"path":23,"stem":24,"icon":25},"Usage","\u002Fdocs\u002Fgetting-started\u002Fusage","1.docs\u002F1.getting-started\u002F3.usage","mdi-sliders",false,{"title":28,"path":29,"stem":30,"children":31,"icon":33},"Architecture","\u002Fdocs\u002Farchitecture","1.docs\u002F2.architecture\u002F1.index",[32],{"title":28,"path":29,"stem":30,"icon":33},"mdi-view-dashboard",{"title":35,"icon":36,"path":37,"stem":38,"children":39,"page":26},"Essentials","mdi:view-grid","\u002Fdocs\u002Fessentials","1.docs\u002F2.essentials",[40,45,49,54],{"title":41,"path":42,"stem":43,"icon":44},"API Reference","\u002Fdocs\u002Fessentials\u002Fmarkdown-syntax","1.docs\u002F2.essentials\u002F1.markdown-syntax","mdi-code-tags",{"title":46,"path":47,"stem":48,"icon":44},"Code Blocks","\u002Fdocs\u002Fessentials\u002Fcode-blocks","1.docs\u002F2.essentials\u002F2.code-blocks",{"title":50,"path":51,"stem":52,"icon":53},"Prose Components","\u002Fdocs\u002Fessentials\u002Fprose-components","1.docs\u002F2.essentials\u002F3.prose-components","mdi-view-grid",{"title":55,"path":56,"stem":57,"icon":58},"Images and Embeds","\u002Fdocs\u002Fessentials\u002Fimages-embeds","1.docs\u002F2.essentials\u002F4.images-embeds","mdi-image",{"id":60,"title":61,"body":62,"description":63,"extension":64,"meta":65,"navigation":66,"path":68,"seo":69,"stem":70,"__hash__":71},"blog\u002F3.blog.yml","Blog",null,"Discover the latest insights from Anooserve about AI infrastructure, sustainable computing, and developer tools.","yml",{},{"icon":67},"mdi:newspaper","\u002Fblog",{"title":61,"description":63},"3.blog","Lywx_0rlXqGQ-GxHhSY_GBUYmJwGNNT_aOoykbdHQi8",[73,273,362],{"id":74,"title":75,"authors":76,"badge":82,"body":84,"date":263,"description":264,"extension":265,"image":266,"meta":268,"navigation":169,"path":269,"seo":270,"stem":271,"__hash__":272},"posts\u002F3.blog\u002F1.getting-started.md","Getting Started with Anooserve API",[77],{"name":78,"to":79,"avatar":80},"Anooserve Team","https:\u002F\u002Fanooserve.com",{"src":81},"https:\u002F\u002Fi.pravatar.cc\u002F128?u=1",{"label":83},"Tutorial",{"type":85,"value":86,"toc":253},"minimark",[87,92,96,100,103,116,120,125,135,139,142,146,219,223,243,249],[88,89,91],"h2",{"id":90},"introduction-to-anooserve","Introduction to Anooserve",[93,94,95],"p",{},"Welcome to Anooserve, your carbon-neutral AI infrastructure platform. This guide will help you get started with our OpenAI-compatible API.",[88,97,99],{"id":98},"what-is-anooserve","What is Anooserve?",[93,101,102],{},"Anooserve provides:",[104,105,106,110,113],"ul",{},[107,108,109],"li",{},"LLM inference with OpenAI API compatibility",[107,111,112],{},"Image generation services",[107,114,115],{},"Agent and workflow design tools",[88,117,119],{"id":118},"quick-start","Quick Start",[121,122,124],"h3",{"id":123},"step-1-create-an-account","Step 1: Create an Account",[93,126,127,128,134],{},"Visit ",[129,130,133],"a",{"href":79,"rel":131},[132],"nofollow","anooserve.com"," to create your account and get API credits.",[121,136,138],{"id":137},"step-2-get-your-api-key","Step 2: Get Your API Key",[93,140,141],{},"Once logged in, navigate to your dashboard to generate your API key.",[121,143,145],{"id":144},"step-3-make-your-first-request","Step 3: Make Your First Request",[147,148,153],"pre",{"className":149,"code":150,"language":151,"meta":152,"style":152},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import requests\n\nresponse = requests.post(\n    \"https:\u002F\u002Fapi.anooserve.com\u002Fv1\u002Fchat\u002Fcompletions\",\n    headers={\"Authorization\": \"Bearer YOUR_API_KEY\"},\n    json={\n        \"model\": \"llama-2-7b\",\n        \"messages\": [{\"role\": \"user\", \"content\": \"Hello!\"}]\n    }\n)\n","python","",[154,155,156,164,171,177,183,189,195,201,207,213],"code",{"__ignoreMap":152},[157,158,161],"span",{"class":159,"line":160},"line",1,[157,162,163],{},"import requests\n",[157,165,167],{"class":159,"line":166},2,[157,168,170],{"emptyLinePlaceholder":169},true,"\n",[157,172,174],{"class":159,"line":173},3,[157,175,176],{},"response = requests.post(\n",[157,178,180],{"class":159,"line":179},4,[157,181,182],{},"    \"https:\u002F\u002Fapi.anooserve.com\u002Fv1\u002Fchat\u002Fcompletions\",\n",[157,184,186],{"class":159,"line":185},5,[157,187,188],{},"    headers={\"Authorization\": \"Bearer YOUR_API_KEY\"},\n",[157,190,192],{"class":159,"line":191},6,[157,193,194],{},"    json={\n",[157,196,198],{"class":159,"line":197},7,[157,199,200],{},"        \"model\": \"llama-2-7b\",\n",[157,202,204],{"class":159,"line":203},8,[157,205,206],{},"        \"messages\": [{\"role\": \"user\", \"content\": \"Hello!\"}]\n",[157,208,210],{"class":159,"line":209},9,[157,211,212],{},"    }\n",[157,214,216],{"class":159,"line":215},10,[157,217,218],{},")\n",[88,220,222],{"id":221},"next-steps","Next Steps",[104,224,225,232,240],{},[107,226,227,228],{},"Explore our ",[129,229,231],{"href":230},"\u002Fdocs","documentation",[107,233,234,235,239],{},"Check out the ",[129,236,238],{"href":237},"\u002Fpricing","pricing"," page",[107,241,242],{},"Join our community",[244,245,246],"info",{},[93,247,248],{},"This is a placeholder blog post. Replace with actual Anooserve content.",[250,251,252],"style",{},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"title":152,"searchDepth":166,"depth":166,"links":254},[255,256,257,262],{"id":90,"depth":166,"text":91},{"id":98,"depth":166,"text":99},{"id":118,"depth":166,"text":119,"children":258},[259,260,261],{"id":123,"depth":173,"text":124},{"id":137,"depth":173,"text":138},{"id":144,"depth":173,"text":145},{"id":221,"depth":166,"text":222},"2026-03-01","A comprehensive guide to integrating Anooserve's OpenAI-compatible API into your applications","md",{"src":267},"https:\u002F\u002Fpicsum.photos\u002Fid\u002F1\u002F640\u002F360",{},"\u002Fblog\u002Fgetting-started",{"title":75,"description":264},"3.blog\u002F1.getting-started","N4fcqPUYSLUmP2wyo2GbEB5J1xEc3oqg9GvNrzqouUg",{"id":274,"title":275,"authors":276,"badge":280,"body":282,"date":353,"description":354,"extension":265,"image":355,"meta":357,"navigation":169,"path":358,"seo":359,"stem":360,"__hash__":361},"posts\u002F3.blog\u002F2.sustainable-ai.md","Why Sustainable AI Matters",[277],{"name":78,"to":79,"avatar":278},{"src":279},"https:\u002F\u002Fi.pravatar.cc\u002F128?u=2",{"label":281},"Company",{"type":85,"value":283,"toc":347},[284,288,291,295,298,309,313,316,327,331,342],[88,285,287],{"id":286},"the-carbon-footprint-of-ai","The Carbon Footprint of AI",[93,289,290],{},"AI models require significant computational resources, which translates to substantial energy consumption. Understanding this impact is crucial for responsible AI development.",[88,292,294],{"id":293},"anooserves-commitment","Anooserve's Commitment",[93,296,297],{},"We're based in Northern Ireland and committed to:",[104,299,300,303,306],{},[107,301,302],{},"Working toward 100% renewable energy",[107,304,305],{},"Achieving carbon neutrality across all operations",[107,307,308],{},"Supporting local sustainable development",[88,310,312],{"id":311},"why-it-matters","Why It Matters",[93,314,315],{},"Every AI inference call consumes energy. By choosing sustainable providers like Anooserve, developers can:",[104,317,318,321,324],{},[107,319,320],{},"Reduce their carbon footprint",[107,322,323],{},"Support renewable energy initiatives",[107,325,326],{},"Build more responsible AI applications",[88,328,330],{"id":329},"our-goals","Our Goals",[104,332,333,336,339],{},[107,334,335],{},"100% carbon neutrality by 2027",[107,337,338],{},"Partnership with local renewable energy providers",[107,340,341],{},"Transparent reporting on our environmental impact",[244,343,344],{},[93,345,346],{},"This is a placeholder blog post. Replace with actual Anooserve sustainability details.",{"title":152,"searchDepth":166,"depth":166,"links":348},[349,350,351,352],{"id":286,"depth":166,"text":287},{"id":293,"depth":166,"text":294},{"id":311,"depth":166,"text":312},{"id":329,"depth":166,"text":330},"2026-03-02","Exploring the environmental impact of AI infrastructure and Anooserve's commitment to carbon neutrality",{"src":356},"https:\u002F\u002Fpicsum.photos\u002Fid\u002F2\u002F640\u002F360",{},"\u002Fblog\u002Fsustainable-ai",{"title":275,"description":354},"3.blog\u002F2.sustainable-ai","CWI4rlbp9hDz4GV45lJbVoiXrGwcNYqoRlEP-LFQTKA",{"id":363,"title":364,"authors":365,"badge":369,"body":370,"date":462,"description":463,"extension":265,"image":464,"meta":466,"navigation":169,"path":467,"seo":468,"stem":469,"__hash__":470},"posts\u002F3.blog\u002F3.ai-agents.md","Building AI Agents with Anooserve",[366],{"name":78,"to":79,"avatar":367},{"src":368},"https:\u002F\u002Fi.pravatar.cc\u002F128?u=3",{"label":83},{"type":85,"value":371,"toc":452},[372,376,379,383,386,397,400,404,407,411,414,425,429,432,436,447],[88,373,375],{"id":374},"introduction-to-ai-agents","Introduction to AI Agents",[93,377,378],{},"AI agents are autonomous systems that can perform tasks, make decisions, and interact with other systems. Anooserve provides tools to build these agents easily.",[88,380,382],{"id":381},"what-youll-learn","What You'll Learn",[93,384,385],{},"In this guide, we'll cover:",[104,387,388,391,394],{},[107,389,390],{},"Creating agent workflows",[107,392,393],{},"Setting up autonomous tasks",[107,395,396],{},"Integrating with external APIs",[88,398,5],{"id":399},"getting-started",[121,401,403],{"id":402},"_1-access-the-workflow-builder","1. Access the Workflow Builder",[93,405,406],{},"Navigate to the Anooserve dashboard and select \"Create Workflow\".",[121,408,410],{"id":409},"_2-design-your-agent","2. Design Your Agent",[93,412,413],{},"Use our visual workflow builder to:",[104,415,416,419,422],{},[107,417,418],{},"Define agent goals",[107,420,421],{},"Set up decision trees",[107,423,424],{},"Configure external integrations",[121,426,428],{"id":427},"_3-deploy-and-monitor","3. Deploy and Monitor",[93,430,431],{},"Deploy your agent and monitor its performance through the dashboard.",[88,433,435],{"id":434},"use-cases","Use Cases",[104,437,438,441,444],{},[107,439,440],{},"Customer service automation",[107,442,443],{},"Data processing workflows",[107,445,446],{},"Multi-step task automation",[244,448,449],{},[93,450,451],{},"This is a placeholder blog post. Replace with actual Anooserve agent workflow documentation.",{"title":152,"searchDepth":166,"depth":166,"links":453},[454,455,456,461],{"id":374,"depth":166,"text":375},{"id":381,"depth":166,"text":382},{"id":399,"depth":166,"text":5,"children":457},[458,459,460],{"id":402,"depth":173,"text":403},{"id":409,"depth":173,"text":410},{"id":427,"depth":173,"text":428},{"id":434,"depth":166,"text":435},"2026-03-03","Learn how to design and deploy autonomous AI agents using Anooserve's workflow tools",{"src":465},"https:\u002F\u002Fpicsum.photos\u002Fid\u002F3\u002F640\u002F360",{},"\u002Fblog\u002Fai-agents",{"title":364,"description":463},"3.blog\u002F3.ai-agents","9jYKIry1ScE550Ct5ATb_OdixeprHg7sT2ZvnEbTkfk",1775825898888]