diff --git a/License.md b/LICENSE.md similarity index 100% rename from License.md rename to LICENSE.md diff --git a/demo/kijiku_rules.json b/demo/kijiku_rules.json new file mode 100644 index 0000000..b028008 --- /dev/null +++ b/demo/kijiku_rules.json @@ -0,0 +1,19 @@ +{ + "open ai settings": { + "model": "gpt-4", + "temp": 1, + "top_p": 1, + "n": 1, + "stream": false, + "stop": null, + "max_tokens": 9223372036854775807, + "presence_penalty": 0, + "frequency_penalty": 0, + "logit_bias": null, + "system_message": "You are a Japanese to English translator. Please remember that you need to translate the narration into English simple past. Please keep the original formatting and punctuation. Please preserve the paragraph formatting. Some terms are pre-translated, so keep those intact. Most names are replaced, if they are not, try to anticipate. Some terms are replaced as well, preserve those too. Try to keep the output on the same number of lines as the input. Also note that 〇 typically indicates a chapter change.", + "message_mode": 1, + "num_lines": "36", + "sentence_fragmenter_mode": "3", + "je_check_mode": "2" + } +} diff --git a/Kudasai.py b/kudasai.py similarity index 99% rename from Kudasai.py rename to kudasai.py index ff7156c..8edf6d9 100644 --- a/Kudasai.py +++ b/kudasai.py @@ -340,4 +340,4 @@ async def main() -> None: ##---------------------------------/ -asyncio.run(main()) \ No newline at end of file +asyncio.run(main()) diff --git a/models/Kairyou.py b/models/kairyou.py similarity index 99% rename from models/Kairyou.py rename to models/kairyou.py index d89eccb..d50ddcb 100644 --- a/models/Kairyou.py +++ b/models/kairyou.py @@ -508,4 +508,4 @@ def write_kairyou_results() -> None: ## pushes the tl debug log to the file Logger.clear_log_file() - Logger.push_batch() \ No newline at end of file + Logger.push_batch() diff --git a/models/Kaiseki.py b/models/kaiseki.py similarity index 100% rename from models/Kaiseki.py rename to models/kaiseki.py diff --git a/models/Kansei.py b/models/kansei.py similarity index 100% rename from models/Kansei.py rename to models/kansei.py diff --git a/models/Kijiku.py b/models/kijiku.py similarity index 100% rename from models/Kijiku.py rename to models/kijiku.py