@@ -71,9 +71,9 @@ class PendleMarketConfig(BaseModel):
71
71
default = None ,
72
72
description = "Model configuration for LLM. If not provided, will use agent's core model" ,
73
73
)
74
- database : Optional [DatabaseConfig ] = Field (
74
+ db_url : Optional [str ] = Field (
75
75
default = None ,
76
- description = "Database configuration. If not provided, will use SQLite with default path" ,
76
+ description = "Database URL. For postgres: postgresql://user:password@host:port/database, for sqlite: sqlite:/// path/to/file.db"
77
77
)
78
78
79
79
@@ -87,21 +87,14 @@ def __init__(self, core_model=None):
87
87
self .tool_prompt = None
88
88
self .DBSession = None
89
89
90
- def _init_database (self , config : Optional [DatabaseConfig ] = None ) -> None :
90
+ def _init_database (self , db_url : Optional [str ] ) -> None :
91
91
"""Initialize database connection based on configuration"""
92
92
# Set default configuration if not provided
93
- db_type = "sqlite"
94
- db_url = 'sqlite:///' + os .path .join (os .getcwd (), "storage" , f"{ self .name } .db" )
95
-
96
- if config :
97
- db_type = config .type
98
- db_url = config .url
93
+ if not db_url :
94
+ db_url = 'sqlite:///' + os .path .join (os .getcwd (), "storage" , f"{ self .name } .db" )
99
95
100
96
# Create engine using the database module's create_engine function
101
- engine = create_engine (
102
- db_type = db_type ,
103
- db_url = db_url ,
104
- )
97
+ engine = create_engine (db_url )
105
98
106
99
# Create tables and initialize session factory
107
100
Base .metadata .create_all (engine )
@@ -119,7 +112,7 @@ async def setup(self, config: PendleMarketConfig) -> None:
119
112
"""Setup the analysis tool with model and prompt"""
120
113
121
114
# Initialize database
122
- self ._init_database (config .database )
115
+ self ._init_database (config .db_url )
123
116
124
117
# Initialize the model
125
118
model_config = config .model if config .model else self .core_model
0 commit comments