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 7f08200 commit a801718Copy full SHA for a801718
wdoc/utils/tasks/summarize.py
@@ -71,7 +71,7 @@ class wdocSummary:
71
Total tokens used across all operations.
72
doc_total_tokens_str : str
73
Human-readable string representation of token usage.
74
- doc_total_cost : float
+ doc_total_cost : Union[float, int]
75
Total cost in dollars for LLM usage.
76
author : Optional[str]
77
Document author if available in metadata.
@@ -88,7 +88,7 @@ class wdocSummary:
88
doc_total_tokens: Dict[str, int]
89
doc_total_tokens_sum: int
90
doc_total_tokens_str: str
91
- doc_total_cost: float
+ doc_total_cost: Union[float, int]
92
author: Optional[str]
93
n_chunk: int
94
0 commit comments