Skip to content

Commit 262d590

Browse files
authored
Merge pull request #912 from crestalnetwork/hyacinthus
fix: add default value to x402
2 parents 6c25f9f + 8785b10 commit 262d590

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## v0.8.31 - 2025-11-14
2+
3+
### Changes
4+
- Updated multiple dependencies to latest versions
5+
- Enhanced LLM model configurations
6+
- Updated agent model definitions
7+
8+
**Dependency Updates:**
9+
- langchain-mcp-adapters: 0.1.12 → 0.1.13
10+
- langgraph-prebuilt: 1.0.2 → 1.0.4
11+
- MCP: 1.21.0 → 1.21.1
12+
- OpenAI: 2.7.2 → 2.8.0
13+
- Ruff: 0.14.4 → 0.14.5
14+
- Slack SDK: 3.37.0 → 3.38.0
15+
16+
**Full Changelog**: https://github.com/crestalnetwork/intentkit/compare/v0.8.30...v0.8.31
17+
118
## v0.8.30 - 2025-11-13
219

320
### Features

intentkit/models/agent.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,12 +952,12 @@ class AgentPublicInfo(BaseModel):
952952
x402_price: Annotated[
953953
float | None,
954954
PydanticField(
955-
default=None,
955+
default=0.01,
956956
description="Price($) of the x402 request",
957957
ge=0.01,
958958
le=1.0,
959959
json_schema_extra={
960-
"x-placeholder": "Enter agent price",
960+
"x-placeholder": "USDC price per request",
961961
"x-step": 0.01,
962962
},
963963
),

0 commit comments

Comments
 (0)