chore: initial re-organization pass
This commit is contained in:
parent
ad905fb0c9
commit
b7eee24565
|
|
@ -30,7 +30,6 @@ This guide helps you understand which versions of Honcho's API are compatible wi
|
|||
</CardGroup>
|
||||
|
||||
|
||||
|
||||
## Version Compatibility Table
|
||||
|
||||
| Honcho API Version | TypeScript SDK | Python SDK |
|
||||
|
|
|
|||
|
|
@ -34,10 +34,10 @@
|
|||
"group": "Core Concepts",
|
||||
"pages": [
|
||||
"v2/documentation/core-concepts/architecture",
|
||||
"v2/documentation/core-concepts/glossary",
|
||||
"v2/documentation/core-concepts/features",
|
||||
"v2/documentation/core-concepts/configuration",
|
||||
"v2/documentation/core-concepts/summarizer"
|
||||
"v2/documentation/core-concepts/summarizer",
|
||||
"v2/documentation/core-concepts/glossary"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
@ -74,20 +74,7 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"tab": "Contributing",
|
||||
"groups": [
|
||||
{
|
||||
"group": "Contributing",
|
||||
"pages": [
|
||||
"v2/contributing/guidelines",
|
||||
"v2/contributing/self-hosting",
|
||||
"v2/contributing/configuration",
|
||||
"v2/contributing/license"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
"tab": "API Reference",
|
||||
"groups": [
|
||||
|
|
@ -177,6 +164,20 @@
|
|||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"tab": "Contributing",
|
||||
"groups": [
|
||||
{
|
||||
"group": "Contributing",
|
||||
"pages": [
|
||||
"v2/contributing/guidelines",
|
||||
"v2/contributing/self-hosting",
|
||||
"v2/contributing/configuration",
|
||||
"v2/contributing/license"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -331,9 +332,9 @@
|
|||
"global": {
|
||||
"anchors": [
|
||||
{
|
||||
"anchor": "Managed Platform",
|
||||
"anchor": "Dashboard",
|
||||
"href": "https://app.honcho.dev",
|
||||
"icon": "book-open-cover"
|
||||
"icon": "table-columns"
|
||||
},
|
||||
{
|
||||
"anchor": "Community",
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: "Managed Honcho Platform"
|
||||
title: "The Honcho Dashboard"
|
||||
icon: "rocket"
|
||||
description: "Build socially intelligent agents without worrying about infrastructure"
|
||||
sidebarTitle: "Platform Overview"
|
||||
sidebarTitle: "Dashboard Overview"
|
||||
---
|
||||
|
||||
<Card title="Sign up to start using Honcho!" icon="rocket" href="https://app.honcho.dev">
|
||||
|
|
|
|||
|
|
@ -11,40 +11,48 @@ AI development often feels like magic - you craft the right prompt and get exact
|
|||
|
||||
Whether you're integrating Honcho into existing platforms, exploring advanced features, or getting up and running quickly, these guides provide concrete examples and implementation patterns.
|
||||
|
||||
## What You'll Find Here
|
||||
Each spellbook focuses on a specific use case with working code you can adapt to your needs. The goal is to get you from idea to working prototype as quickly as possible, then provide the depth you need to scale and customize.
|
||||
|
||||
### Getting Started
|
||||
|
||||
**[Overview](/v2/guides/overview)** - You are here
|
||||
|
||||
**[MCP Integration](/v2/guides/mcp)** - Get Honcho running with a single prompt in Cursor or Claude Code
|
||||
|
||||
### Application Interfaces
|
||||
## Application Interfaces
|
||||
Ready-to-use integration patterns for popular platforms:
|
||||
|
||||
**[Discord Bot](/v2/guides/discord)** - Build a Discord bot that remembers users across conversations
|
||||
<CardGroup cols={3}>
|
||||
<Card title="Discord Bot" icon="discord" href="/v2/guides/discord">
|
||||
Build a Discord bot that remembers users across conversations
|
||||
</Card>
|
||||
<Card title="Telegram Bot" icon="telegram" href="/v2/guides/telegram">
|
||||
Create a Telegram bot with persistent user understanding
|
||||
</Card>
|
||||
<Card title="MCP" icon="link" href="/v2/guides/mcp">
|
||||
Get Honcho running with a single prompt in Cursor or Claude Code
|
||||
</Card>
|
||||
</CardGroup>
|
||||
|
||||
**[Telegram Bot](/v2/guides/telegram)** - Create a Telegram bot with persistent user understanding
|
||||
|
||||
### Design Patterns
|
||||
## Design Patterns
|
||||
Implementation patterns for Honcho's core capabilities:
|
||||
|
||||
**[Dialectic Endpoint](/v2/guides/dialectic-endpoint)** - Query user psychology in natural language
|
||||
|
||||
**[Working with Session Context](/v2/guides/get-context)** - Manage conversation flow and context windows
|
||||
|
||||
**[Search](/v2/guides/search)** - Search your data using natural language
|
||||
|
||||
**[Working Representations](/v2/guides/working-rep)** - Understanding and customizing user models
|
||||
|
||||
**[Streaming Responses](/v2/guides/streaming-response)** - Handle real-time interactions efficiently
|
||||
|
||||
**[Using Filters](/v2/guides/using-filters)** - Control what data gets processed and how
|
||||
|
||||
**[File Uploads](/v2/guides/file-uploads)** - Upload PDF, text, or JSON files to create messages
|
||||
|
||||
## Philosophy
|
||||
|
||||
These aren't just API documentation - they're implementation patterns that solve real problems. Each spellbook focuses on a specific use case with working code you can adapt to your needs.
|
||||
|
||||
The goal is to get you from idea to working prototype as quickly as possible, then provide the depth you need to scale and customize.
|
||||
<CardGroup cols={3}>
|
||||
<Card title="Dialectic Endpoint" icon="comments" href="/v2/guides/dialectic-endpoint">
|
||||
Query user psychology in natural language
|
||||
</Card>
|
||||
<Card title="Get Context" icon="gift" href="/v2/guides/get-context">
|
||||
Manage conversation flow and context windows
|
||||
</Card>
|
||||
<Card title="Search" icon="searchengin" href="/v2/guides/search">
|
||||
Search your data using natural language
|
||||
</Card>
|
||||
<Card title="Working Representations" icon="code" href="/v2/guides/working-rep">
|
||||
Understanding and customizing user models
|
||||
</Card>
|
||||
<Card title="Streaming" icon="signal-stream" href="/v2/guides/streaming-response">
|
||||
Handle real-time interactions efficiently
|
||||
</Card>
|
||||
<Card title="Using Filters" icon="filter" href="/v2/guides/using-filters">
|
||||
Control what data gets processed and how
|
||||
</Card>
|
||||
<Card title="File Uploads" icon="file" href="/v2/guides/file-uploads">
|
||||
Upload PDF, text, or JSON files to create messages
|
||||
</Card>
|
||||
</CardGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue