Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 901 Bytes

LLMTraceDetail.md

File metadata and controls

29 lines (20 loc) · 901 Bytes

LLMTraceDetail

Properties

Name Type Description Notes
trace Trace [optional]

Example

from iblai.models.llm_trace_detail import LLMTraceDetail

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

# convert the object into a dict
llm_trace_detail_dict = llm_trace_detail_instance.to_dict()
# create an instance of LLMTraceDetail from a dict
llm_trace_detail_from_dict = LLMTraceDetail.from_dict(llm_trace_detail_dict)

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