File tree Expand file tree Collapse file tree 2 files changed +68
-0
lines changed
Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Original file line number Diff line number Diff line change 1+ export async function GET ( ) {
2+ const llmsContent = `# Sim - AI Agent Workflow Builder
3+ Visual platform for building and deploying AI agent workflows
4+
5+ ## Overview
6+ Sim is a platform to build, prototype, and deploy AI agent workflows. It's the fastest-growing platform for building AI agent workflows.
7+
8+ ## Key Features
9+ - Visual Workflow Builder: Drag-and-drop interface for creating AI agent workflows
10+ - [Documentation](https://docs.sim.ai): Complete guide to building AI agents
11+
12+ ## Use Cases
13+ - AI Agent Workflow Automation
14+ - RAG Agents
15+ - RAG Systesm and Pipline
16+ - Chatbot Workflows
17+ - Document Processing Workflows
18+ - Customer Service Chatbot Workflows
19+ - Ecommerce Agent Workflows
20+ - Marketing Agent Workflows
21+ - Deep Research Workflows
22+ - Marketing Agent Workflows
23+ - Real Estate Agent Workflows
24+ - Financial Planning Agent Workflows
25+ - Legal Agent Workflows
26+
27+ ## Getting Started
28+ - [Quick Start Guide](https://docs.sim.ai/quickstart)
29+ - [GitHub](https://github.com/simstudioai/sim)
30+
31+ ## Resources
32+ - [GitHub](https://github.com/simstudioai/sim)`
33+
34+ return new Response ( llmsContent , {
35+ headers : {
36+ 'Content-Type' : 'text/plain' ,
37+ 'Cache-Control' : 'public, max-age=86400' ,
38+ } ,
39+ } )
40+ }
Original file line number Diff line number Diff line change 1+ # Allow all AI crawlers
2+ User-agent: GPTBot
3+ Allow: /
4+
5+ User-agent: OAI-SearchBot
6+ Allow: /
7+
8+ User-agent: ChatGPT-User
9+ Allow: /
10+
11+ # Allow other AI crawlers
12+ User-agent: Claude-Web
13+ Allow: /
14+
15+ User-agent: PerplexityBot
16+ Allow: /
17+
18+ User-agent: Applebot-Extended
19+ Allow: /
20+
21+ # Traditional search engines
22+ User-agent: *
23+ Allow: /
24+ Disallow: /api/
25+ Disallow: /workspace/
26+ Disallow: /chat/
27+ Disallow: /.well-known/
28+ Disallow: /invite/
You can’t perform that action at this time.
0 commit comments