By the end of this guide you’ll have a fully working local instance of AI360, with all three AI providers connected, and you’ll have made your first successful call to the Text Summarizer API. No prior knowledge of Gemini or Cloudflare Workers AI is required — just a terminal and the API keys listed in Step 3.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/nayalsaurav/ai360/llms.txt
Use this file to discover all available pages before exploring further.
Configure environment variables
Create a See the Configuration page for the full variable reference, including the optional
.env.local file at the project root and populate it with your API credentials. The six variables below are the minimum required to run every tool:GOOGLE_AI_MODEL override and instructions for obtaining each key.Start the development server
Run the Next.js development server:Once the server is ready, open http://localhost:3000 in your browser. You should see the AI360 landing page with navigation links to the Dashboard and all eight utility tools.
Try your first AI tool
With the server running, send a A successful response will look like this:If you receive a
POST request to the Text Summarizer API route. The endpoint accepts a JSON body with a userPrompt field containing the text you want condensed:500 error, double-check that GEMINI_API_KEY is set correctly in .env.local and restart the dev server.