chatgpt-doc-translator icon indicating copy to clipboard operation
chatgpt-doc-translator copied to clipboard

This is a web service built using FastAPI and OpenAI's GPT-3.5-Turbo model that enables translation of various types of documents. The service currently supports translation of PDF, Word, CSV, TXT, an...

Results 2 chatgpt-doc-translator issues
Sort by recently updated
recently updated
newest added

curl --location --verbose --include 'http://0.0.0.0:8000/translate' \ --form 'api_type=open_ai' \ --form 'translate_type=en_es' \ --form 'file=@"/Users/uriarecio/Documents/Working/Translator/text_to_translate.pdf"' * Trying 0.0.0.0:8000... * Connected to 0.0.0.0 (127.0.0.1) port 8000 > POST /translate HTTP/1.1 > Host:...

{"detail":"Unsupported file type: application/octet-stream"} is the output of curl, tested both doc and docx files, where can put my hands on?