Spaces:
Running
api won't work
did use the public space to try the API
this is the example code
`from gradio_client import Client
client = Client(
"https://huggingfaceh4-falcon-chat.hf.space/",
serialize=False,
)
result = client.predict(
"Howdy!", # str in 'Click on any example and press Enter in the input textbox!' Dataset component
fn_index=0,
)
print(result)`
but I get a lot of errors from it such as:
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/Users/xxxxx/xxxxx/Company/devmeni/ai/falcon/falcon.py", line 21, in
result = client.predict(
^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/gradio_client/client.py", line 285, in predict
return self.submit(*args, api_name=api_name, fn_index=fn_index).result()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/gradio_client/client.py", line 988, in result
return super().result(timeout=timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.11/3.11.4_1/Frameworks/Python.framework/Versions/3.11/lib/python3.11/concurrent/futures/_base.py", line 456, in result
return self.__get_result()
^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/Cellar/python@3.11/3.11.4_1/Frameworks/Python.framework/Versions/3.11/lib/python3.11/concurrent/futures/_base.py", line 401, in __get_result
raise self._exception
File "/opt/homebrew/Cellar/python@3.11/3.11.4_1/Frameworks/Python.framework/Versions/3.11/lib/python3.11/concurrent/futures/thread.py", line 58, in run
result = self.fn(*self.args, **self.kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/gradio_client/client.py", line 645, in _inner
predictions = _predict(*data)
^^^^^^^^^^^^^^^
File "/opt/homebrew/lib/python3.11/site-packages/gradio_client/client.py", line 689, in _predict
if "error" in result and "429" in result["error"] and is_public_space:
^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: argument of type 'NoneType' is not iterable
something that I am missing ?
same issue, is it resolved?
hey
@freddyaboulton
I saw your code, BUT the code doesn't work for me. Heres an example. If you could help me that would be awesome!
Nvm, I got it to work
How did you able to get it work? I am also facing same issue