chore (docs): Update Versions and Changelogs (#172)
This commit is contained in:
parent
2871ab8248
commit
bcb3b6106a
|
|
@ -5,6 +5,13 @@ 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/).
|
||||
|
||||
## [2.1.2] - 2025-07-30
|
||||
|
||||
### Fixed
|
||||
|
||||
- Summarizer module to ignore empty summaries and pass appropriate one to get_context
|
||||
- Structured Outputs calls with OpenAI provider to pass strict=True to Pydantic Schema
|
||||
|
||||
## [2.1.1] - 2025-07-23
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# 🫡 Honcho
|
||||
|
||||

|
||||

|
||||
[](https://discord.gg/plasticlabs)
|
||||
[](https://arxiv.org/abs/2310.06983)
|
||||

|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ This guide helps you understand which versions of Honcho's API are compatible wi
|
|||
|
||||
## Version Compatibility
|
||||
|
||||
### Honcho API v2.1.1 (Current)
|
||||
### Honcho API v2.1.2 (Current)
|
||||
|
||||
<CardGroup cols={2}>
|
||||
<Card title="TypeScript SDK" icon="js">
|
||||
|
|
@ -35,7 +35,8 @@ This guide helps you understand which versions of Honcho's API are compatible wi
|
|||
|
||||
| Honcho API Version | TypeScript SDK | Python SDK |
|
||||
|-------------------|---------------|------------|
|
||||
| v2.1.1 (Current) | v1.2.1 | v1.2.2 |
|
||||
| v2.1.2 (Current) | v1.2.1 | v1.2.2 |
|
||||
| v2.1.1 | v1.2.1 | v1.2.2 |
|
||||
| v2.1.0 | v1.2.1 | v1.2.2 |
|
||||
| v2.0.5 | v1.1.0 | v1.1.0 |
|
||||
| v2.0.4 | v1.1.0 | v1.1.0 |
|
||||
|
|
|
|||
|
|
@ -27,8 +27,15 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
### Honcho API and SDK Changelogs
|
||||
<Tabs>
|
||||
<Tab title="Honcho API">
|
||||
<Update label="v2.1.2 (Current)">
|
||||
### Fixed
|
||||
|
||||
<Update label="v2.1.1 (Current)">
|
||||
- Summarizer module to ignore empty summaries and pass appropriate one to get_context
|
||||
- Structured Outputs calls with OpenAI provider to pass strict=True to Pydantic Schema
|
||||
</Update>
|
||||
|
||||
|
||||
<Update label="v2.1.1">
|
||||
### Added
|
||||
|
||||
- Test harness for custom Honcho evaluations
|
||||
|
|
@ -208,7 +215,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
|
||||
<Tab title="Python SDK">
|
||||
[Python SDK](https://pypi.org/project/honcho-ai/)
|
||||
<Update label="v1.2.2 (Current)">
|
||||
<Update label="v1.2.2">
|
||||
### Added
|
||||
|
||||
- Filter parameter to various endpoints
|
||||
|
|
@ -244,7 +251,7 @@ Welcome to the Honcho changelog! This section documents all notable changes to t
|
|||
|
||||
<Tab title="TypeScript SDK">
|
||||
[TypeScript SDK](https://www.npmjs.com/package/@honcho-ai/sdk)
|
||||
<Update label="v1.2.1 (Current)">
|
||||
<Update label="v1.2.1">
|
||||
### Added
|
||||
|
||||
- linting via Biome
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
"navigation": {
|
||||
"versions": [
|
||||
{
|
||||
"version": "v2.1.1",
|
||||
"version": "v2.1.2",
|
||||
"api": {
|
||||
"openapi": [
|
||||
"openapi.documented.yml"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "honcho"
|
||||
version = "2.1.1"
|
||||
version = "2.1.2"
|
||||
description = "Honcho Server"
|
||||
authors = [
|
||||
{name = "Plastic Labs", email = "hello@plasticlabs.ai"},
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ app = FastAPI(
|
|||
title="Honcho API",
|
||||
summary="The Identity Layer for the Agentic World",
|
||||
description="""Honcho is a platform for giving agents user-centric memory and social cognition""",
|
||||
version="2.1.1",
|
||||
version="2.1.2",
|
||||
contact={
|
||||
"name": "Plastic Labs",
|
||||
"url": "https://honcho.dev",
|
||||
|
|
|
|||
Loading…
Reference in New Issue