Skip to content

Commit

Permalink
More digits on cost (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitead committed Sep 11, 2024
1 parent 73d12ff commit 573c97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paperqa/agents/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def status(self) -> str:
f"Status: Paper Count={len(self.docs.docs)} | Relevant Papers="
f"{len({c.text.doc.dockey for c in self.answer.contexts if c.score > self.RELEVANT_SCORE_CUTOFF})}"
f" | Current Evidence={len([c for c in self.answer.contexts if c.score > self.RELEVANT_SCORE_CUTOFF])}"
f" | Current Cost=${self.answer.cost:.2f}"
f" | Current Cost=${self.answer.cost:.4f}"
)


Expand Down

0 comments on commit 573c97b

Please sign in to comment.