Task with images #421
Unanswered
arnaud-secondlayer
asked this question in
Q&A
Replies: 1 comment
-
More efficent way would be to send array of integers, In [1]: a = b"test"
In [2]: list(a)
Out[2]: [116, 101, 115, 116]
In [3]: bytes(list(a))
Out[3]: b'test' |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to do some image processing in a task (I receive the image from a fastapi endpoint).
What is the best way to send images in a task? Today I convert images to a base64 string but I wonder if there is a more efficient way.
Beta Was this translation helpful? Give feedback.
All reactions