* chore: Update versioning for release * fix: remove db creation at start and sync migrations and models * fix: Checkpoint changing metamessage schema * chore: linter fixes * fix: session cloning working * Hybrid long-term memory (#92) * Add TOM method switching * Add system prompt and note on format * Add persistence tweaks * Specify format for each section of user representation * Parse XML tags before saving representation metamessage * Clean up * Use Claude 3.5 Haiku and refine prompt * Simplify message processing * chore: update token limit on dialectic and model for deriver * Add embedding-based long-term fact retrieval * Fix bug preventing new documents from being created * Use multiple queries + tweak prompt * Fix collection name bug + add duplicate removal * First implementation of on-demand user rep generation * WIP debug on-demand user rep changes * Fixed representations not being stored & deriver issue * Some speed improvements * Play with number of facts / queries * WIP prompt caching for Claude * WIP fix anthropic caching * Anthropic prompt caching working but messages too short * Use Cerebras for small inferences * Make dialectic responses 1000 tokens max * Make user representation generation model a constant * Use llama 3.1 8b for query generation * Update env template * Add crud.get_or_create_protected_collection * rabbit comments * Fix linter issues * Add Cerebras to stream router method * Better handling of default-empty string args * Change prints to debug logs * Add error handling to TOM inference * Handle missing/empty client in model responses * Handle no messages case in get_chat_history * Fix indent * Add error handling to single_prompt methods * Fix get_or_create_user_protected_collection * Simplify openAI-compatible model client instantiation * Remove health endpoint * Remove LocalEmbeddingStore * Change prints to debug logs * Change sentry track * Code review changes * Add README to ToM module * Switch to Groq * Fix inconsistent openai compatible provider list in stream() * Update env template to include Groq variables * Add model_client tests * fix: Fix unit tests --------- Co-authored-by: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> * add scoped API keys (#91) * add AUTH_JWT_SECRET and ADMIN_KEY, use in security middleware (TODO granular keys) * WIP: convert all API paths to use scoped keys * add basic unit tests for API keys, ruff formatting * MVP of route using JWT for payload * add get_user_from_token * add key table to postgres, use it to enable key revocation * add key revocation pt 2 -- fix order of param checks * finish convenience routes that assume params from JWT * add tests for key API * get_keys * add secrets utility script, add key rotation, fill out tests * add tiny cache as PoC * nits, validations, etc * only create keys table migration if necessary * fix keys tests to always use auth * tiny fix to make custom DATABASE_SCHEMA work * review: add better docs, fix security issue with cache, clear db on rotation, and more * remove rotation * remove key database entirely * Add `/all` path to get all apps (#94) * add `/all` path for apps * assert vector extension installed (need this for groudon) * review --------- Co-authored-by: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> * add scoped API keys (#91) * add AUTH_JWT_SECRET and ADMIN_KEY, use in security middleware (TODO granular keys) * WIP: convert all API paths to use scoped keys * add basic unit tests for API keys, ruff formatting * MVP of route using JWT for payload * add get_user_from_token * add key table to postgres, use it to enable key revocation * add key revocation pt 2 -- fix order of param checks * finish convenience routes that assume params from JWT * add tests for key API * get_keys * add secrets utility script, add key rotation, fill out tests * add tiny cache as PoC * nits, validations, etc * only create keys table migration if necessary * fix keys tests to always use auth * tiny fix to make custom DATABASE_SCHEMA work * review: add better docs, fix security issue with cache, clear db on rotation, and more * remove rotation * remove key database entirely * Add `/all` path to get all apps (#94) * add `/all` path for apps * assert vector extension installed (need this for groudon) * review --------- Co-authored-by: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> * chore: README and CHANGELOG updates * add JWT expiry * fix: Consolidate get methods with JWT token resolution * chore: Add Annotation to Path, Query, and Body params * chore: run ruff formatter * chore: nits & add one exhaustive test of a query route * fix: undo change to fly.toml * fix: Langfuse tracing * Consolidate Get Methods (#96) * fix: Consolidate get methods with JWT token resolution * chore: Add Annotation to Path, Query, and Body params * chore: run ruff formatter * chore: nits & add one exhaustive test of a query route * fix: undo change to fly.toml --------- Co-authored-by: dr-frmr <docterformer@protonmail.com> * fix: dev-667 fix streaming endpoint * fix: Anthropic Langfuse Tracing * fix: add scripts folder to dockerfile * fix: Remove redundant fields from pydantic schemas * fix: Add deeper protection on reserved collection * fix: Consolidate chat and stream methods * docs: Update Mintlify API Reference and Changelog * remove langchain guide, update architecture diagram * honcho mcp server * chore: Update .env template * update discord, temporarily remove other guides * Limit dialectic & deriver context usage with two-scale progressive summarization (#97) * WIP two tiered summaries * Move to process_item * Save user rep metamessage even if no message_id * Change number of messages per short summary * Fix broken mock * Remove prints * chore: fix test --------- Co-authored-by: Vineeth Voruganti <13438633+VVoruganti@users.noreply.github.com> * feat: Add Gemini Support, link facts to message, use 8b for dialectic fact queries * chore: Styling * chore: coderabbit nitpicks * keep dialectic guide * Add streaming guide * Remove TODO from dialectic guide * Fix JS snippets that referred to honcho singleton as client * Add App explanation to architecture page --------- Co-authored-by: Dani Balcells <18307962+danibalcells@users.noreply.github.com> Co-authored-by: doria <93405247+dr-frmr@users.noreply.github.com> Co-authored-by: dr-frmr <docterformer@protonmail.com> Co-authored-by: vintro <vince@plasticlabs.ai> Co-authored-by: Daniel Balcells <dbalcells@gmail.com> |
||
|---|---|---|
| .. | ||
| _snippets | ||
| api-reference | ||
| contributing | ||
| getting-started | ||
| guides | ||
| images | ||
| logo | ||
| README.md | ||
| favicon.svg | ||
| mint.json | ||
| openapi.json | ||
| package-lock.json | ||
| package.json | ||
| pnpm-lock.yaml | ||
README.md
Honcho Docs
These docs are built using Next.js via mintlify.
Setting Up Honcho's Docs Locally
- Clone the repository:
git clone git@github.com:plastic-labs/honcho.git
- Navigate into the
docsfolder:
cd honcho/docs/
The docs folder contains the markdown files that make up the documentation. The majority of the files are in the pages directory. Some notable files in this folder include:
- Verify that you have Node.js and npm installed in your system. You can check by running:
node --version
npm --version
-
If not installed, download Node.js and npm from the respective official websites.
-
Once you have Node.js and npm running, proceed to install
pnpm- another package manager that helps to manage project dependencies:
npm install -g pnpm
- Install the project dependencies using pnpm:
pnpm i
- After the successful installation of the project dependencies, start the local server:
pnpm dev
Now, you should be able to view the docs on your local environment by visiting http://localhost:3000. You can explore the different markdown files and make changes as you see fit.