We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 586ab1b commit bf6edd7Copy full SHA for bf6edd7
replicate/use.py
@@ -3,7 +3,6 @@
3
# - [ ] Support file streaming
4
import copy
5
import hashlib
6
-import logging
7
import os
8
import tempfile
9
from functools import cached_property
@@ -214,7 +213,7 @@ def _resolve_ref(obj: Any) -> Any:
214
213
def _log_prediction_url(id: str) -> None:
215
if os.environ.get("R8_LOG_PREDICTION_URL") != "1":
216
return
217
- logging.info("Running prediction https://replicate.com/p/%s", id)
+ print("Running prediction https://replicate.com/p/%s", id)
218
219
220
T = TypeVar("T")
0 commit comments