Integrations - Anything
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
As we transition to our new builder integrations may be temporarily unavailable. We are working to improve their functionality and compatibility with the new system. If you have questions on specific integrations please email us at hello@anything.com. Thank you!
Anything offers 100+ built-in integrations (and growing!) to extend your apps. Build AI-powered features, generate PDFs, display maps, or enhance your UI with component libraries.
Missing an integration? Email us at hello@anything.com with your suggestion. Meanwhile, you can connect to any external API using our External API integration guide to add custom functionality to your app.
Adding integrations
Add integrations by:
- Type
/in chat or select “Add-ons” menu - Select the integration
- Write a prompt on how you want to use the integration. Send the message.
You can add integrations to your Pages, Components, or Functions. When you add an integration, you’ll see a special chip in your chat. Anything adds the integration code to your page/component/function.
You need to include the integration in your prompt. You’ll know it’s referenced correctly if you see a chip in your chat.
Some integrations use credits to run. Learn more about Credits.
Using AI integrations
Build AI apps with our integrated models. Each integration comes with support out of box for:
- Streaming - AI-generated text appears word by word, real time. You can tell Anything not to stream when you use the integration if you’d rather have it load.
- Flexible Prompting - Let Anything guess the best prompt or specify the exact prompt
- Structured Outputs - Get JSON responses to build dynamic UIs and drive application logic
Adding AI is simple - just use a slash command, describe how you want to use the AI, and Anything handles hooking it up to your app.
Streaming
By default, responses appear word-by-word as they’re generated, creating a real-time experience. This works great for chatbots and interactive experiences. If you prefer to show a loading spinner and display the complete response at once, simply tell Anything “don’t stream the response” in your prompt. This is useful for:
- Applications that process the full response
- UIs that need to wait for complete data
- Situations where immediate partial results aren’t helpful
Prompting
Anything offers multiple ways to handle AI prompts:
- Basic Integration
- Just include the AI integration (e.g.
/[ChatGPT]) in your message - Anything will guess an optimal prompt based on your app’s context
- Just include the AI integration (e.g.
- Custom Prompts
- Specify exactly what you want: “Use / [ChatGPT] with prompt: ‘Analyze this text for tone’”
- Control the exact behavior of the AI
- Dynamic Variables
- Use
[brackets]for dynamic values - Example: “Take in a subject line from the user. Then use / [ChatGPT] with prompt: ‘Generate a concise email for [subject line]’”
- Anything handles all the code to pass variables to your prompts. You can chain multiple variables
- Use
- Prompt Optimization
- Let Anything help: “Optimize the prompt for / [ChatGPT]. I want to [your goals]”
- Anything will craft an effective prompt for your AI integration and include them in the code to call the integration
Structured Outputs
While AI typically returns raw text, you can request JSON responses for more structured data handling. Common Use Cases:
Building UIs
// Example: "Generate a recipe as JSON and show UI for each step" { "title": "Chocolate Cake", "steps": [ {"step": 1, "instruction": "Preheat oven..."}, {"step": 2, "instruction": "Mix ingredients..."} ] }Driving Logic
// Example: "Analyze text sentiment as JSON" { "sentiment": "positive", "score": 0.8, "key_phrases": ["excellent service", "highly recommend"] }
Important Notes:
- JSON responses automatically disable streaming
- Remember to handle loading states
- Great for when you need to process or display data programmatically
- See Structured Outputs for more examples
Integrations
AI Models
GPT-4 Vision
Analyze and understand images with AI. Example prompts:
Let users upload photos and use /[GPT-4 Vision] to describe themBuild an app that uses /[GPT-4 Vision] to analyze product photosCreate a tool that uses /[GPT-4 Vision] to extract text from images
AI Tools
Audio Transcription
Convert audio files to text. Example prompts:
Let users upload audio files and use /[Audio Transcription] to get textBuild a podcast transcription tool with /[Audio Transcription]Create a meeting notes app using /[Audio Transcription]
Text-to-Speech
Convert text to natural-sounding speech. Example prompts:
Read content aloud using /[Text to Speech]Build an audiobook creator with /[Text to Speech]Create an accessibility tool using /[Text to Speech]
Nano Banana
Generate images from text prompts. Supports custom aspect ratios (1:1, 2:3, 3:2) and resolutions up to 4K. Can also edit existing images by passing an input image with your prompt. Example prompts:
Use /[Nano Banana] to generate a hero image for a fitness appLet users describe a scene and use /[Nano Banana] to create itUse /[Nano Banana] to create product mockups from descriptions
Markdown Renderer
Display AI-generated markdown content as formatted HTML/React elements. Example prompts:
Generate a blog post with /[ChatGPT] and display it with /[Markdown Renderer]Create documentation with /[Anthropic Sonnet 3.5] and format it with /[Markdown Renderer]Build a wiki that uses /[Markdown Renderer] to display AI-generated content
UI & Design
Chakra UI
Design library with accessible, reusable components. Example prompts:
Add a form using /[Chakra UI] componentsBuild a dashboard with /[Chakra UI] layoutCreate a responsive navbar using /[Chakra UI]
shadcn/ui
Modern component library with a clean design system. You can use the full library or specific components like Calendar, Dialog, or Select. Learn more at shadcn/ui docs. Example prompts:
Style my page with /[shadcn/ui] componentsBuild a settings panel using /[shadcn/ui]Create a data table with /[shadcn/ui]Add a /[shadcn/ui] calendar component for date pickingUse the /[shadcn/ui] dialog component for a popup form
Location & Maps
Google Maps
Add maps to your pages. Example prompts:
Show store locations on /[Google Maps]Build a delivery tracker with /[Google Maps]Create a property listing app using /[Google Maps]
Google Business Data
Access business information and insights. Example prompts:
Find restaurants using /[Google Business Data]Build a local business directory with /[Google Business Data]Create a review aggregator using /[Google Business Data]
Utils
QR Code
Generate QR codes for links and data. Example prompts:
Create QR codes with /[QR Code]Make a URL shortener with QR codes using /[QR Code]
Data
Movies and TV Series
Search and get details about movies and TV shows. Example prompts:
Build a movie recommendation app with /[Movies and TV Series]Create a TV show tracker using /[Movies and TV Series]Make a watchlist app with /[Movies and TV Series]
Files
PDF Generation
Create and download PDFs programmatically. Example prompts:
Let users fill out a form and use /[PDF Generation] to download itBuild an invoice generator with /[PDF Generation]Create a resume builder that exports to PDF using /[PDF Generation]
PDF Parser
Convert PDF files to text. Example prompts:
Extract text from PDFs using /[PDF Parser]Build a document analyzer with /[PDF Parser]Create a PDF search tool using /[PDF Parser]
Media
Charts
Create interactive charts and data visualizations. Example prompts:
Create a sales dashboard with /[Charts]Build a data visualization tool using /[Charts]Make a financial tracker with /[Charts]
Communication & Productivity
Resend
Send transactional emails with high deliverability rates. Example prompts:
Send welcome emails using /[Resend]Build an email notification system with /[Resend]Create a newsletter signup using /[Resend]
You’ll need to set up your own Resend API key to use this integration in Anything.
Search & Discovery
Google Search
Access Google’s search results programmatically. Example prompts:
Search for information using /[Google Search]Build a search aggregator with /[Google Search]Create a research tool using /[Google Search]
Google Image Search
Find and access images through Google’s image search. Example prompts:
Find images for my content using /[Google Image Search]Build an image discovery tool with /[Google Image Search]Create a visual search app using /[Google Image Search]
Web & Data Processing
Web Scraper
Extract data from websites programmatically. Example prompts:
Scrape product information using /[Web Scraper]Build a price monitoring tool with /[Web Scraper]Create a content aggregator using /[Web Scraper]
Development Tools
Code Runner
Execute code in multiple programming languages. Example prompts:
Run code snippets using /[Code Runner]Build a coding playground with /[Code Runner]Create an online IDE using /[Code Runner]