Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.29 KB

File metadata and controls

36 lines (27 loc) · 1.29 KB

LineageNodeResponse

A node in the lineage graph (enriched chunk).

Properties

Name Type Description Notes
id UUID Chunk ID
content str Chunk text content
chunk_type ChunkType
chunk_metadata ChunkMetadataOutput
tenant_id UUID Tenant ID
created_at datetime Creation timestamp
updated_at datetime Last update timestamp

Example

from ksapi.models.lineage_node_response import LineageNodeResponse

# TODO update the JSON string below
json = "{}"
# create an instance of LineageNodeResponse from a JSON string
lineage_node_response_instance = LineageNodeResponse.from_json(json)
# print the JSON string representation of the object
print(LineageNodeResponse.to_json())

# convert the object into a dict
lineage_node_response_dict = lineage_node_response_instance.to_dict()
# create an instance of LineageNodeResponse from a dict
lineage_node_response_from_dict = LineageNodeResponse.from_dict(lineage_node_response_dict)

[Back to Model list] [Back to API list] [Back to README]