We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 909e0f2 commit 4ed3de0Copy full SHA for 4ed3de0
qtext/schema.py
@@ -52,10 +52,14 @@ def to_record(self) -> Record:
52
53
@classmethod
54
def from_record(cls, record: Record) -> DefaultTable:
55
+ """Convert from a Record to a DefaultTable instance.
56
+
57
+ This method affects the final output of the query. Some of the fields can be
58
+ omitted before returning to the user to avoid large transfers of data.
59
+ """
60
return cls(
61
id=record.id,
62
text=record.text,
- vector=record.vector,
63
score=record.score,
64
boost=record.boost,
65
title=record.title,
0 commit comments