gpt-subb
gpt-subb copied to clipboard
gpt-subb is a command-line tool to translate and convert subtitles using OpenAI's Chat-GPT language models
Since I first created this project, my understanding on OpenAI's API and LLMs got significantly improved. That being said, I think this deserve an update for implementing things I didn't...
A well designed prompt helps to get consistent result over many iterations. The prompt must guarantee: - [ ] The cue reference must not be modified - [ ] The...
[Chat API](https://platform.openai.com/docs/api-reference/chat) is not the best fit for translating only tasks, the tool should use [Completion API](https://platform.openai.com/docs/api-reference/completions) which has more fine grained options to consistent results. There is also a...