Skip to content

Commit 6440138

Browse files
vitaglianogmdr223
andauthored
Bugfix: mock method to increment costs (#298)
* Added mock method to increment costs * bump version --------- Co-authored-by: Matthew Russo <mdrusso@mit.edu>
1 parent c92077b commit 6440138

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "palimpzest"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
description = "Palimpzest is a system which enables anyone to process AI-powered analytical queries simply by defining them in a declarative language"
55
readme = "README.md"
66
requires-python = ">=3.12"

src/palimpzest/utils/progress.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,9 @@ def incr(self, unique_full_op_id: str, num_inputs: int = 1, num_outputs: int = 1
172172
def finish(self):
173173
pass
174174

175+
def incr_overall_progress_cost(self, cost_delta: float):
176+
pass
177+
175178
class PZProgressManager(ProgressManager):
176179
"""Progress manager for command line interface using rich"""
177180

0 commit comments

Comments
 (0)