Skip to content

Commit f187456

Browse files
cleanup
1 parent 307e6bb commit f187456

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

codeflash/api/aiservice.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,6 @@ def make_ai_service_request(
7373
url = f"{self.base_url}/ai{endpoint}"
7474
if method.upper() == "POST":
7575
json_payload = json.dumps(payload, indent=None, default=pydantic_encoder)
76-
# print(f"------------------------JSON PAYLOAD for {url}--------------------")
77-
# print(json_payload)
78-
# print("-------------------END OF JSON PAYLOAD--------------------")
7976
headers = {**self.headers, "Content-Type": "application/json"}
8077
response = requests.post(url, data=json_payload, headers=headers, timeout=timeout)
8178
else:

0 commit comments

Comments
 (0)