But I noticed a small mistake in OpenAnnotate3D\TIV24_OpenAnnotate2\Server\server.py
line 80
result = command_run(environment, content)
should be changed to
result = command_run(environment, result)
otherwise it is just wasting apikey to do """result = translate(content)""" in the previous line
Thank you for your wonderful project!
But I noticed a small mistake in OpenAnnotate3D\TIV24_OpenAnnotate2\Server\server.py line 80 result = command_run(environment, content) should be changed to result = command_run(environment, result)
otherwise it is just wasting apikey to do """result = translate(content)""" in the previous line