From 057bf6ec83701d2cc2efea9b98b3fa9ee3ae6815 Mon Sep 17 00:00:00 2001 From: DhruvSrikanth Date: Mon, 12 Aug 2024 01:37:09 +0100 Subject: [PATCH] Temporary fix until versioning is supported in the package --- weco/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weco/client.py b/weco/client.py index cc1c5d3..0de454f 100644 --- a/weco/client.py +++ b/weco/client.py @@ -405,6 +405,8 @@ def _query( ValueError If the input is invalid. """ + warnings.warn("Setting the version number of the function is not yet supported. Currently, the first version of the function will be used i.e., version 0.") + version_number = 0 # Validate the input image_info = self._validate_query(text_input=text_input, images_input=images_input)