diff --git a/README.md b/README.md index 2e1669a..0845a28 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Honcho -![Static Badge](https://img.shields.io/badge/Version-0.0.4-blue) +![Static Badge](https://img.shields.io/badge/Version-0.0.5-blue) [![Discord](https://img.shields.io/discord/1016845111637839922?style=flat&logo=discord&logoColor=23ffffff&label=Plastic%20Labs&labelColor=235865F2)](https://discord.gg/plasticlabs) ![GitHub License](https://img.shields.io/github/license/plastic-labs/honcho) ![GitHub Repo stars](https://img.shields.io/github/stars/plastic-labs/honcho) diff --git a/api/CHANGELOG.md b/api/CHANGELOG.md index 9b5f847..2385bc2 100644 --- a/api/CHANGELOG.md +++ b/api/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.0.5] — 2024-03-14 + +### Added + +* Metadata to all data primitives (Users, Sessions, Messages, etc.) +* Ability to filter paginated GET requests by JSON filter based on metadata +* Optional Sentry error monitoring +* Optional Opentelemetry logging +* Dialectic API to interact with honcho agent and get insights about users +* Automatic Fact Derivation Script for automatically generating simple memory + +### Changed + +* API Server now uses async methods to make use of benefits of FastAPI + + ## [0.0.4] — 2024-02-22 ### Added diff --git a/api/pyproject.toml b/api/pyproject.toml index 3fc9cbc..de8f327 100644 --- a/api/pyproject.toml +++ b/api/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "honcho" -version = "0.0.4" +version = "0.0.5" description = "Honcho Server" authors = ["Plastic Labs "] readme = "README.md" diff --git a/sdk/CHANGELOG.md b/sdk/CHANGELOG.md index ace34de..cb210a2 100644 --- a/sdk/CHANGELOG.md +++ b/sdk/CHANGELOG.md @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.0.5] — 2024-03-14 + +### Added + +* Metadata to all data primitives (Users, Sessions, Messages, etc.) +* Ability to filter paginated GET requests by JSON filter based on metadata +* Dialectic API to interact with honcho agent and get insights about users +* Code Coverage Tests +* Autogenerated Sphinx Documentation for Honcho Client SDK + +### Fixed + +* URL encoding all GET requests in honcho client + ## [0.0.4] — 2024-02-22 ### Added diff --git a/sdk/README.md b/sdk/README.md index ee1ca2c..61f64dd 100644 --- a/sdk/README.md +++ b/sdk/README.md @@ -5,7 +5,8 @@ applications. Read about the motivation of this project [here](https://blog.plasticlabs.ai). -Read the full documentation of this project [here](https://docs.honcho.dev) +Read the full documentation of this project [here](https://docs.honcho.dev) and +find the SDK reference [here](https://api.python.honcho.dev) ## Installation diff --git a/sdk/pyproject.toml b/sdk/pyproject.toml index 72353f3..523bb42 100644 --- a/sdk/pyproject.toml +++ b/sdk/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "honcho-ai" -version = "0.0.4" +version = "0.0.5" description = "Python Client SDK for Honcho" authors = ["Plastic Labs "] license = "AGPL-3.0"