This commit is contained in:
marko-kraemer 2024-11-19 04:02:41 +01:00
parent b1be407975
commit afcd362e81
3 changed files with 8 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import os
import asyncio
from pathlib import Path
from agentpress.tools.tool import Tool, ToolResult, openapi_schema, xml_schema
from agentpress.tool import Tool, ToolResult, openapi_schema, xml_schema
from agentpress.state_manager import StateManager
from typing import Optional

View File

@ -46,9 +46,14 @@ MODULES = {
"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."
},
"state_management": {
"required": False,
"required": True,
"files": ["state_manager.py"],
"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."
},
"db_connection": {
"required": True,
"files": ["db_connection.py"],
"description": "Database Connection - Provides a connection to a SQLite database for storing and retrieving conversation state, tool data, and other persistent information."
}
}

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "agentpress"
version = "0.1.9"
version = "0.1.10"
description = "Building blocks for AI Agents"
authors = ["marko-kraemer <mail@markokraemer.com>"]
readme = "README.md"