Skip to content

Commit 33e3dd9

Browse files
authored
Merge pull request #905 from crestalnetwork/hyacinthus
chore: update uv.lock and project files
2 parents 9c56e23 + b98522a commit 33e3dd9

File tree

4 files changed

+46
-15
lines changed

4 files changed

+46
-15
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v0.8.24 - 2025-11-11
2+
3+
### Configuration Updates
4+
- Updated uv.lock dependencies with 243 changes
5+
- Enhanced configuration system in `intentkit/config/config.py`
6+
- Updated LLM model configurations in `intentkit/models/llm.csv`
7+
- Added new LLM model support in `intentkit/models/llm.py`
8+
9+
### Documentation
10+
- Updated CHANGELOG.md with recent changes
11+
12+
**Full Changelog**: https://github.com/crestalnetwork/intentkit/compare/v0.8.23...v0.8.24
13+
114
## v0.8.23 - 2025-11-10
215

316
### Bug Fixes

intentkit/core/engine.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,7 @@ async def stream_agent_raw(
361361
AuthorType.TELEGRAM,
362362
AuthorType.TWITTER,
363363
AuthorType.API,
364+
AuthorType.X402,
364365
]:
365366
payer = agent.owner
366367
# user account

intentkit/models/agent.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,11 @@ class AgentTable(Base, AgentUserInputColumns):
430430
nullable=True,
431431
comment="Timestamp when the agent public info was last updated",
432432
)
433+
x402_price = Column(
434+
Float,
435+
nullable=True,
436+
comment="Price of the x402 request",
437+
)
433438

434439
# auto timestamp
435440
created_at = Column(
@@ -952,6 +957,18 @@ class AgentPublicInfo(BaseModel):
952957
from_attributes=True,
953958
)
954959

960+
x402_price: Annotated[
961+
float | None,
962+
PydanticField(
963+
default=None,
964+
description="Price($) of the x402 request",
965+
ge=0.01,
966+
le=1.0,
967+
json_schema_extra={
968+
"x-placeholder": "Enter agent price",
969+
},
970+
),
971+
]
955972
description: Annotated[
956973
str | None,
957974
PydanticField(

uv.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)