MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / QueryRequest

Class QueryRequest

src/environment/database/types.py:7–10  ·  view source on GitHub ↗

Request for executing a SQL query.

Source from the content-addressed store, hash-verified

5
6
7class QueryRequest(BaseModel):
8 """Request for executing a SQL query."""
9 query: str = Field(description="SQL query to execute")
10 parameters: Optional[Union[Dict[str, Any], tuple, list]] = Field(default=None, description="Query parameters (dict for named params, tuple/list for positional params)")
11
12
13class TableInfo(BaseModel):

Callers 15

execute_sqlMethod · 0.90
ensure_table_existsMethod · 0.90
get_dataMethod · 0.90
_load_symbolsMethod · 0.90
_get_latest_priceMethod · 0.90
get_dataMethod · 0.90
create_tableMethod · 0.90
insert_dataMethod · 0.90
update_dataMethod · 0.90
delete_dataMethod · 0.90

Calls

no outgoing calls

Tested by 3

ensure_table_existsMethod · 0.72
get_dataMethod · 0.72