Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/services/tg/bot/kind/ai_relayer/router.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

# Cache configuration
CACHE_TTL = 24 * 60 * 60 # 1 day in seconds
MAX_CACHED_MESSAGES = 10
MAX_CACHED_MESSAGES = 20
MAX_CACHE_SIZE_BYTES = 2048 # 2KB


Expand Down
3 changes: 1 addition & 2 deletions intentkit/skills/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
AgentKitConfig,
CdpEvmWalletProvider,
)
from langchain.tools import StructuredTool
from langchain_core.tools import BaseTool
from langchain_core.tools import BaseTool, StructuredTool
from langchain_core.tools.base import ToolException
from langgraph.runtime import get_runtime
from pydantic import (
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ dependencies = [
"langgraph-checkpoint>=2.0.18",
"langgraph-checkpoint-postgres>=2.0.16",
"langgraph-prebuilt (>=0.6.1)",
"langmem>=0.0.27",
"mypy-boto3-s3 (>=1.37.24,<2.0.0)",
"openai>=1.59.6",
"pgvector>=0.3.6",
Expand Down Expand Up @@ -73,6 +72,7 @@ dependencies = [
"pyjwt>=2.10.1",
"langchain-deepseek>=0.1.4",
"intentkit",
"langmem",
]

[dependency-groups]
Expand All @@ -95,6 +95,7 @@ members = [

[tool.uv.sources]
intentkit = { workspace = true }
langmem = { git = "https://github.com/langchain-ai/langmem.git" }

[build-system]
requires = ["hatchling"]
Expand Down
Loading
Loading