mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
feat: added llms.txt and robots.txt (#1145)
This commit is contained in:
40
apps/sim/app/llms.txt/route.ts
Normal file
40
apps/sim/app/llms.txt/route.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
export async function GET() {
|
||||
const llmsContent = `# Sim - AI Agent Workflow Builder
|
||||
Visual platform for building and deploying AI agent workflows
|
||||
|
||||
## Overview
|
||||
Sim is a platform to build, prototype, and deploy AI agent workflows. It's the fastest-growing platform for building AI agent workflows.
|
||||
|
||||
## Key Features
|
||||
- Visual Workflow Builder: Drag-and-drop interface for creating AI agent workflows
|
||||
- [Documentation](https://docs.sim.ai): Complete guide to building AI agents
|
||||
|
||||
## Use Cases
|
||||
- AI Agent Workflow Automation
|
||||
- RAG Agents
|
||||
- RAG Systesm and Pipline
|
||||
- Chatbot Workflows
|
||||
- Document Processing Workflows
|
||||
- Customer Service Chatbot Workflows
|
||||
- Ecommerce Agent Workflows
|
||||
- Marketing Agent Workflows
|
||||
- Deep Research Workflows
|
||||
- Marketing Agent Workflows
|
||||
- Real Estate Agent Workflows
|
||||
- Financial Planning Agent Workflows
|
||||
- Legal Agent Workflows
|
||||
|
||||
## Getting Started
|
||||
- [Quick Start Guide](https://docs.sim.ai/quickstart)
|
||||
- [GitHub](https://github.com/simstudioai/sim)
|
||||
|
||||
## Resources
|
||||
- [GitHub](https://github.com/simstudioai/sim)`
|
||||
|
||||
return new Response(llmsContent, {
|
||||
headers: {
|
||||
'Content-Type': 'text/plain',
|
||||
'Cache-Control': 'public, max-age=86400',
|
||||
},
|
||||
})
|
||||
}
|
||||
28
apps/sim/public/robots.txt
Normal file
28
apps/sim/public/robots.txt
Normal file
@@ -0,0 +1,28 @@
|
||||
# Allow all AI crawlers
|
||||
User-agent: GPTBot
|
||||
Allow: /
|
||||
|
||||
User-agent: OAI-SearchBot
|
||||
Allow: /
|
||||
|
||||
User-agent: ChatGPT-User
|
||||
Allow: /
|
||||
|
||||
# Allow other AI crawlers
|
||||
User-agent: Claude-Web
|
||||
Allow: /
|
||||
|
||||
User-agent: PerplexityBot
|
||||
Allow: /
|
||||
|
||||
User-agent: Applebot-Extended
|
||||
Allow: /
|
||||
|
||||
# Traditional search engines
|
||||
User-agent: *
|
||||
Allow: /
|
||||
Disallow: /api/
|
||||
Disallow: /workspace/
|
||||
Disallow: /chat/
|
||||
Disallow: /.well-known/
|
||||
Disallow: /invite/
|
||||
Reference in New Issue
Block a user