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 24537c8 commit 53b1106Copy full SHA for 53b1106
redisai/client.py
@@ -626,7 +626,7 @@ def scriptdel(self, key: AnyStr) -> str:
626
def scriptrun(
627
self,
628
key: AnyStr,
629
- function: AnyStr,
+ function: str,
630
inputs: Union[AnyStr, Sequence[AnyStr]],
631
outputs: Union[AnyStr, Sequence[AnyStr]],
632
) -> str:
@@ -637,7 +637,7 @@ def scriptrun(
637
----------
638
key : AnyStr
639
Script key
640
- function : AnyStr
+ function : str
641
Name of the function in the ``script``
642
inputs : Union[AnyStr, List[AnyStr]]
643
Tensor(s) which is already saved in the RedisAI using a tensorset call. These
0 commit comments