* 🧪 asyncify tests * ✨ asyncify client * Basic Test for Page based pagination * add sync buildstep and client * add vscode DX * Added Testing for generators and updated examples * feat: example updates * readme exists now * Stylistic changes and generic message * Metamessages with other refactoring - untested * Work with unit tests * Fix Examples * MEME-78 Update Changelogs * Docstrings to client * 🧪 autogenerate sync tests * test one * add db type * sync client * add status badge * add coverage * add file * give perms * properly output coverage * split test and coverage * rename action * 🧪 autogenerate sync tests (#16) * Vector Support (#18) * Scaffold for PGVector support * Buggy crud with logic skeleton on api * Crud logic and schema definition for pgvector * Populate all routes and refactor to name Collection * vince's progress * AsyncCollection progress * Local PGVector Docker Container * client methods for sdk except document delete and update * Vector Support Passing All Test Cases * Docs Updates --------- Co-authored-by: vintro <vince@plasticlabs.ai> * Add reverse parameters for paginated routes * Address dependabot * Formatting * initial commit on honcho dspy personas * working, hit token limit and can't test dspy optimization * initial version working, need to test optimization * optimizers working, but appending any example * ready for user object (tbomk) * Revert "add test actions and coverage" * Refactor to add User and App Tables * User Object passing test cases * Update examples * DSPy Todo and documentation updates * Add is_active filtering * Add is_active filtering to the generator * Fix update user metadata * working, but weird compiler error * fixed str error in optimizer * ship --------- Co-authored-by: hyusap <paulayush@gmail.com> Co-authored-by: vintro <vince@plasticlabs.ai> |
||
|---|---|---|
| .vscode | ||
| api | ||
| example | ||
| scripts | ||
| sdk | ||
| .gitignore | ||
| LICENSE | ||
| README.md | ||
README.md
Honcho
A User context management solution for building AI Agents and LLM powered applications.
Read about the motivation of this project here.
Read the user documenation here
Project Structure
The Honcho repo is a monorepo containing the server/API that manages database interactions and storing data about an application's state along with the python sdk for interacting with the API.
The folders are structured as follows:
api/- contains a FastAPI application that provides user context management routessdk/- contains the code for the python sdk and package hosted on PyPIexample/- contains example code for different use cases of honcho
This project utilizes poetry for dependency management
A separate changelog is managed for the sdk and api in their respective directories.
Usage
API
The API can be run either by installing the necessary dependencies and then specifying the appropriate environment variables.
- Create a virtualenv and install the API's dependencies
cd honcho/api/ # change to the api directory
poetry shell # Activate virutal environment
poetry install # install dependencies
- Copy the
.env.templatefile and specify the type of database and connection_uri. For testing sqlite is fine. The below example uses an in-memory sqlite database.
Honcho has been tested with Postgresql and PGVector
DATABASE_TYPE=postgres
CONNECTION_URI=postgresql://testuser:testpwd@localhost:5432/honcho
- launch a postgresd with pgvector enabled with docker-compose
cd honcho/api/local
docker-compose up -d
- Run the API via uvicorn
cd honcho/api # change to the api directory
poetry shell # Activate virtual environment if not already enabled
python -m uvicorn src.main:app --reload
Docker
Alternatively there is also a Dockerfile included to run the API server from a
docker container.
The .env file is not loaded into the docker container and should still be
configured from outside.
cd honcho/api
docker build -t honcho-api .
docker run --env-file .env -p 8000:8000 honcho-api:latest
Deploy on Fly
The API can also be deployed on fly.io. Follow the Fly.io
Docs to setup your environment and the
flyctl.
Once flyctl is set up use the following commands to launch the application:
cd honcho/api
flyctl launch --no-deploy # Follow the prompts and edit as you see fit
cat .env | flyctl secrets import # Load in your secrets
flyctl deploy # Deploy with appropriate environment variables
Client SDK
Install the honcho client sdk from a python project with the following command:
pip install honcho-ai
alternatively if you are using poetry run:
poetry add honcho-ai
checkout the example folder for examples of how to use the sdk
Use Locally
For local development of the sdk you can add the local directory as a package using poetry with the following commands.
poetry add --editable ./{path_to_honcho}/honcho/sdk
See more information here
Contributing
This project is completely open source and welcomes any and all open source contributions. The workflow for contributing is to make a fork of the repository. You can claim an issue in the issues tab or start a new thread to indicate a feature or bug fix you are working on.
Once you have finished your contribution make a PR pointed at the staging
branch, and it will be reviewed by a project manager. Feel free to join us in
our discord to discuss your changes or get
help.
Once your changes are accepted and merged into staging they will undergo a
period of live testing before entering the upstream into main
License
Honcho is licensed under the AGPL-3.0 License. Learn more at the License file