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

Class InsertRequest

src/environment/database/types.py:36–40  ·  view source on GitHub ↗

Request for inserting data into a table.

Source from the content-addressed store, hash-verified

34
35
36class InsertRequest(BaseModel):
37 """Request for inserting data into a table."""
38 table_name: str = Field(description="Name of the table")
39 data: Union[Dict[str, Any], List[Dict[str, Any]]] = Field(description="Data to insert")
40 on_conflict: Optional[str] = Field(default=None, description="Conflict resolution: 'REPLACE' for INSERT OR REPLACE, 'IGNORE' for INSERT OR IGNORE")
41
42
43class UpdateRequest(BaseModel):

Callers 13

_create_sample_tablesMethod · 0.90
insert_dataMethod · 0.90
full_insertMethod · 0.90
stream_insertMethod · 0.90
stream_insertMethod · 0.90
stream_insertMethod · 0.90
stream_insertMethod · 0.90
stream_insertMethod · 0.90
stream_insertMethod · 0.90
stream_insertMethod · 0.90

Calls

no outgoing calls

Tested by 1

full_insertMethod · 0.72