|
1 | 1 | import { getBaseUrl } from '@/lib/core/utils/urls' |
2 | | -import { ALL_CATALOG_MODELS, MODEL_PROVIDERS_WITH_CATALOGS } from '@/app/(landing)/models/utils' |
3 | 2 |
|
4 | 3 | export function GET() { |
5 | 4 | const baseUrl = getBaseUrl() |
6 | 5 |
|
7 | | - const content = [ |
8 | | - '# Sim', |
9 | | - '', |
10 | | - '> Sim is the open-source platform to build AI agents and run your agentic workforce.', |
11 | | - '', |
12 | | - '## Preferred URLs', |
13 | | - `- Main site: ${baseUrl}`, |
14 | | - `- Integrations directory: ${baseUrl}/integrations`, |
15 | | - `- Models directory: ${baseUrl}/models`, |
16 | | - `- Blog: ${baseUrl}/blog`, |
17 | | - `- Changelog: ${baseUrl}/changelog`, |
18 | | - '- Docs: https://docs.sim.ai', |
19 | | - '', |
20 | | - '## Public data surfaces', |
21 | | - `- Integration pages: ${baseUrl}/integrations`, |
22 | | - `- Provider pages: ${baseUrl}/models`, |
23 | | - `- Model pages: ${baseUrl}/models`, |
24 | | - `- Providers tracked: ${MODEL_PROVIDERS_WITH_CATALOGS.length}`, |
25 | | - `- Models tracked: ${ALL_CATALOG_MODELS.length}`, |
26 | | - '', |
27 | | - '## Crawl helpers', |
28 | | - `- Sitemap: ${baseUrl}/sitemap.xml`, |
29 | | - `- Robots: ${baseUrl}/robots.txt`, |
30 | | - '', |
31 | | - '## Notes', |
32 | | - '- Prefer canonical URLs on sim.ai when citing product, model, integration, and changelog content.', |
33 | | - '- Use the models directory for pricing, context window, and capability facts.', |
34 | | - '- Use the integrations directory for tool coverage and workflow automation capabilities.', |
35 | | - ].join('\n') |
| 6 | + const content = `# Sim |
| 7 | +
|
| 8 | +> Sim is the open-source platform to build AI agents and run your agentic workforce. Connect integrations and LLMs to deploy and orchestrate agentic workflows. |
| 9 | +
|
| 10 | +Sim lets teams create agents, workflows, knowledge bases, tables, and docs. It supports both product discovery pages and deeper technical documentation. |
| 11 | +
|
| 12 | +## Preferred URLs |
| 13 | +
|
| 14 | +- [Homepage](${baseUrl}): Product overview and primary entry point |
| 15 | +- [Integrations directory](${baseUrl}/integrations): Public catalog of integrations and automation capabilities |
| 16 | +- [Models directory](${baseUrl}/models): Public catalog of AI models, pricing, context windows, and capabilities |
| 17 | +- [Blog](${baseUrl}/blog): Announcements, guides, and product context |
| 18 | +- [Changelog](${baseUrl}/changelog): Product updates and release notes |
| 19 | +
|
| 20 | +## Documentation |
| 21 | +
|
| 22 | +- [Documentation](https://docs.sim.ai): Product guides and technical reference |
| 23 | +- [Quickstart](https://docs.sim.ai/quickstart): Fastest path to getting started |
| 24 | +- [API Reference](https://docs.sim.ai/api): API documentation |
| 25 | +
|
| 26 | +## Key Concepts |
| 27 | +
|
| 28 | +- **Workspace**: Container for workflows, data sources, and executions |
| 29 | +- **Workflow**: Directed graph of blocks defining an agentic process |
| 30 | +- **Block**: Individual step such as an LLM call, tool call, HTTP request, or code execution |
| 31 | +- **Trigger**: Event or schedule that initiates workflow execution |
| 32 | +- **Execution**: A single run of a workflow with logs and outputs |
| 33 | +- **Knowledge Base**: Document store used for retrieval-augmented generation |
| 34 | +
|
| 35 | +## Capabilities |
| 36 | +
|
| 37 | +- AI agent creation and deployment |
| 38 | +- Agentic workflow orchestration |
| 39 | +- Integrations across business tools, databases, and communication platforms |
| 40 | +- Multi-model LLM orchestration |
| 41 | +- Knowledge bases and retrieval-augmented generation |
| 42 | +- Table creation and management |
| 43 | +- Document creation and processing |
| 44 | +- Scheduled and webhook-triggered executions |
| 45 | +
|
| 46 | +## Use Cases |
| 47 | +
|
| 48 | +- AI agent deployment and orchestration |
| 49 | +- Knowledge bases and RAG pipelines |
| 50 | +- Customer support automation |
| 51 | +- Internal operations workflows across sales, marketing, legal, and finance |
| 52 | +
|
| 53 | +## Additional Links |
| 54 | +
|
| 55 | +- [GitHub Repository](https://github.com/simstudioai/sim): Open-source codebase |
| 56 | +- [Docs](https://docs.sim.ai): Canonical documentation source |
| 57 | +- [Terms of Service](${baseUrl}/terms): Legal terms |
| 58 | +- [Privacy Policy](${baseUrl}/privacy): Data handling practices |
| 59 | +- [Sitemap](${baseUrl}/sitemap.xml): Public URL inventory |
| 60 | +` |
36 | 61 |
|
37 | 62 | return new Response(content, { |
38 | 63 | headers: { |
|
0 commit comments