chore: relax python constraint and release (#169)
This commit is contained in:
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.9.7] - 2024-10-18
|
||||||
|
- chore: update tiktoken to support python 3.13
|
||||||
|
|
||||||
## [0.9.6] - 2024-10-18
|
## [0.9.6] - 2024-10-18
|
||||||
- fix: update summarizer_exchange model to use default model from input exchange (#139)
|
- fix: update summarizer_exchange model to use default model from input exchange (#139)
|
||||||
- feat: Add synopisis approach for the core goose loop (#166)
|
- feat: Add synopisis approach for the core goose loop (#166)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "ai-exchange"
|
name = "ai-exchange"
|
||||||
version = "0.9.6"
|
version = "0.9.7"
|
||||||
description = "a uniform python SDK for message generation with LLMs"
|
description = "a uniform python SDK for message generation with LLMs"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
@@ -10,7 +10,7 @@ dependencies = [
|
|||||||
"griffe>=1.1.1",
|
"griffe>=1.1.1",
|
||||||
"attrs>=24.2.0",
|
"attrs>=24.2.0",
|
||||||
"jinja2>=3.1.4",
|
"jinja2>=3.1.4",
|
||||||
"tiktoken>=0.7.0",
|
"tiktoken>=0.8.0",
|
||||||
"httpx>=0.27.0",
|
"httpx>=0.27.0",
|
||||||
"tenacity>=9.0.0",
|
"tenacity>=9.0.0",
|
||||||
"python-dotenv>=1.0.1",
|
"python-dotenv>=1.0.1",
|
||||||
|
|||||||
+2
-2
@@ -1,9 +1,9 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "goose-ai"
|
name = "goose-ai"
|
||||||
description = "a programming agent that runs on your machine"
|
description = "a programming agent that runs on your machine"
|
||||||
version = "0.9.6"
|
version = "0.9.7"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10, <=3.12"
|
requires-python = ">=3.10"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ai-exchange",
|
"ai-exchange",
|
||||||
"attrs>=23.2.0",
|
"attrs>=23.2.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user