Skip to content

Commit afcd362

Browse files
committed
fix
1 parent b1be407 commit afcd362

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

agentpress/agents/simple_web_dev/tools/files_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import asyncio
33
from pathlib import Path
4-
from agentpress.tools.tool import Tool, ToolResult, openapi_schema, xml_schema
4+
from agentpress.tool import Tool, ToolResult, openapi_schema, xml_schema
55
from agentpress.state_manager import StateManager
66
from typing import Optional
77

agentpress/cli.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,14 @@
4646
"description": "Conversation Management System - Handles message threading, conversation history, and provides a UI for viewing conversation threads. Manages the flow of messages between the user, LLM, and tools."
4747
},
4848
"state_management": {
49-
"required": False,
49+
"required": True,
5050
"files": ["state_manager.py"],
5151
"description": "State Persistence System - Provides thread-safe storage and retrieval of conversation state, tool data, and other persistent information. Enables maintaining context across sessions and managing shared state between components."
52+
},
53+
"db_connection": {
54+
"required": True,
55+
"files": ["db_connection.py"],
56+
"description": "Database Connection - Provides a connection to a SQLite database for storing and retrieving conversation state, tool data, and other persistent information."
5257
}
5358
}
5459

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "agentpress"
3-
version = "0.1.9"
3+
version = "0.1.10"
44
description = "Building blocks for AI Agents"
55
authors = ["marko-kraemer <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)