MCPcopy Create free account
hub / github.com/AQ-MedAI/MedMemoryBench / Query

Class Query

methods/cognee/modules/search/models/Query.py:7–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5
6
7class Query(Base):
8 __tablename__ = "queries"
9
10 id = Column(UUID, primary_key=True, default=uuid4)
11
12 text = Column(String)
13 query_type = Column(String)
14 user_id = Column(UUID)
15
16 created_at = Column(DateTime(timezone=True), default=lambda: datetime.now(timezone.utc))
17 updated_at = Column(DateTime(timezone=True), onupdate=lambda: datetime.now(timezone.utc))

Callers 15

log_queryFunction · 0.90
list_providersFunction · 0.50
list_agentsFunction · 0.50
import_agent_serializedFunction · 0.50
list_passagesFunction · 0.50
list_messagesFunction · 0.50
reset_messagesFunction · 0.50
list_agent_groupsFunction · 0.50
get_all_orgsFunction · 0.50
delete_orgFunction · 0.50
update_orgFunction · 0.50
list_blocksFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected