(accumulated_cost_file, cost)
| 273 | return 0.0 |
| 274 | |
| 275 | def save_accumulated_cost(accumulated_cost_file, cost): |
| 276 | with open(accumulated_cost_file, "w", encoding="utf-8") as f: |
| 277 | json.dump({"total_cost": cost}, f) |
| 278 | |
| 279 | def print_response(completion_json, is_llm=False): |
| 280 | print("============================================") |
no outgoing calls
no test coverage detected