AI Tools
ChatPage has access to a wide range of tools that you can use to steer the AI for better results. These tools enable the AI to perform specific actions, fetch data, manage files, and integrate with various services automatically.
Understanding AI Tools
Section titled “Understanding AI Tools”When you give ChatPage a prompt, it can use these tools to accomplish your request. While you don’t need to explicitly call these tools yourself, understanding what’s available helps you write better prompts and know what the AI is capable of doing.
Available Tools
Section titled “Available Tools”File Management
Section titled “File Management”Tools for working with project files:
- fetch_files: Retrieve and read project files
- fetch_assets: Access project assets and resources
- edit_file: Apply targeted edits to existing files using Relace instant apply, enabling near-instantaneous code modifications even on large files
- write_file: Create or modify files in your project
- delete_file: Remove files from your project
- add_env_vars: Add environment variables to your project configuration
Example prompts:
- “Add a new component file for the user profile”
- “Delete the old landing page file”
- “Add an environment variable for the API endpoint”
Web Tools
Section titled “Web Tools”Tools for accessing external web content:
- web_search: Search the web for information, documentation, or resources
- scrape_website: Extract content from specific websites
Example prompts:
- “Search for the latest React documentation”
- “Find examples of modern hero section designs”
- “Get the content from the company’s about page at example.com”
Supabase Integration
Section titled “Supabase Integration”Tools for working with Supabase databases:
- supabase_execute: Execute SQL queries on your Supabase database
- supabase_query: Query tables and retrieve data from Supabase
Example prompts:
- “Query all users from my Supabase database”
- “Create a new table in Supabase for storing blog posts”
- “Insert sample data into the Supabase products table”
- “Update user profiles where the account is inactive”
Image Tools
Section titled “Image Tools”Tools for working with images:
- generate_images: Create AI-generated images from text descriptions
Example prompts:
- “Generate an image of a modern office workspace for the about page”
- “Create a hero image showing a tropical beach at sunset”
How to Use AI Tools Effectively
Section titled “How to Use AI Tools Effectively”Natural Language Prompts
Section titled “Natural Language Prompts”You don’t need to call tools explicitly. Just describe what you want in natural language:
- Instead of: “Use db_query to select from users”
- Say: “Show me all users in the database”
The AI will automatically select the appropriate tool.
Combining Tools
Section titled “Combining Tools”The AI can use multiple tools to complete complex tasks:
"Query all products from Supabase and display themin a grid on the shop page"The AI will:
- Use
supabase_queryto get products - Use
write_fileto update the shop page
Steering with Tool Awareness
Section titled “Steering with Tool Awareness”Knowing available tools helps you write better prompts:
-
Good: “Search the web for modern pricing page examples and implement one”
- AI knows it can use
web_searchto find examples
- AI knows it can use
-
Good: “Query all orders from Supabase and calculate total revenue”
- AI knows it can use
supabase_queryto fetch the data
- AI knows it can use
Tool Limitations
Section titled “Tool Limitations”Be aware of what tools can and cannot do:
- Tools work within their specific domains
- Some tools require proper configuration (API keys, integrations)
- Tools follow service-specific limitations (rate limits, permissions)
Common Workflows
Section titled “Common Workflows”Working with Supabase Data
Section titled “Working with Supabase Data”"Fetch user profiles from Supabase and create a team memberspage showing their names and roles"Tools used: supabase_query, write_file
Image Generation Workflow
Section titled “Image Generation Workflow”"Generate a hero image showing a modern workspace, then use it as thebackground for the homepage hero section"Tools used: generate_images, write_file
Web Research Integration
Section titled “Web Research Integration”"Search for the latest best practices for form validation, then implementa contact form following those practices"Tools used: web_search, write_file
Best Practices
Section titled “Best Practices”Be Specific About Data Sources
Section titled “Be Specific About Data Sources”When working with databases, be clear about the source:
- “Query from Supabase” for Supabase database operations
Mention Tool-Relevant Details
Section titled “Mention Tool-Relevant Details”Include information the tool will need:
- Table names for database operations
- Specific URLs for web scraping
Trust the AI’s Tool Selection
Section titled “Trust the AI’s Tool Selection”The AI will choose the right tools automatically. Focus on describing your goal, not which tools to use.
Leverage Tool Combinations
Section titled “Leverage Tool Combinations”Take advantage of the AI’s ability to chain tools together. Describe multi-step workflows naturally:
"Query users from Supabase and display them in a tablewith sorting and filtering"Tool Categories Quick Reference
Section titled “Tool Categories Quick Reference”- Project Files: fetch_files, fetch_assets, edit_file, write_file, delete_file, add_env_vars
- Web: web_search, scrape_website
- Supabase: supabase_execute, supabase_query
- Images: generate_images
Understanding the tools available to ChatPage helps you craft more effective prompts and accomplish complex tasks with simple natural language requests. The AI handles tool selection and execution automatically, allowing you to focus on describing what you want to achieve.