You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update: Metadata is included by default, Add: exclude_data arg to exclude meta_data (#10)
* update: made metadata to be always included by default
* Update README.md
Signed-off-by: pk-zipstack <praveen@zipstack.com>
---------
Signed-off-by: pk-zipstack <praveen@zipstack.com>
Copy file name to clipboardExpand all lines: README.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,10 @@ The script uses a local SQLite database (`file_processing.db`) with the followin
30
30
-`time_taken` (REAL): Time taken to process the file
31
31
-`status_code` (INTEGER): API status code
32
32
-`status_api_endpoint` (TEXT): API endpoint for checking status
33
+
-`total_embedding_cost` (REAL): Total cost incurred for embeddings.
34
+
-`total_embedding_tokens` (INTEGER): Total tokens used for embeddings.
35
+
-`total_llm_cost` (REAL): Total cost incurred for LLM operations.
36
+
-`total_llm_tokens` (INTEGER): Total tokens used for LLM operations.
33
37
-`updated_at` (TEXT): Last updated timestamp
34
38
-`created_at` (TEXT): Creation timestamp
35
39
@@ -60,7 +64,7 @@ This will display detailed usage information.
60
64
-`--skip_unprocessed`: Skip unprocessed files when retrying failed files.
61
65
-`--log_level`: Log level (default: `INFO`).
62
66
-`--print_report`: Print a detailed report of all processed files at the end.
63
-
-`--include_metadata`: Include metadata on tokens consumed and the context passed to LLMs for prompt studio exported tools in the result for each file.
67
+
-`--exclude_metadata`: Exclude metadata on tokens consumed and the context passed to LLMs for prompt studio exported tools in the result for each file.
0 commit comments