Slang.Gpt.Cli
1.1.0
dotnet tool install --global Slang.Gpt.Cli --version 1.1.0
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local Slang.Gpt.Cli --version 1.1.0
#tool dotnet:?package=Slang.Gpt.Cli&version=1.1.0
nuke :add-package Slang.Gpt.Cli --version 1.1.0
Slang.Net - GPT
Use GPT to automatically translate your app at compile time.
Currently, only the OpenAI API is supported.
Getting Started
Install slang-gpt-cli:
dotnet tool install -g slang.gpt.cli --prerelease
Then add the following configuration in your slang.json:
{
"base_culture": "ru",
"gpt": {
"model": "gpt-4o-mini",
"description": "Showcase for Slang.Net.Gpt"
}
}
Let's run this:
slang-gpt <csproj> --target=ru --api-key=<api-key>
Configuration
Key | Type | Usage | Required | Default |
---|---|---|---|---|
model |
string |
Model name | YES | |
max_input_length |
int |
Max input characters per request | NO | (inferred by model) |
temperature |
double |
Temperature parameter for GPT | NO | (API default) |
description |
string |
App description | YES |
Command line arguments
Argument | Description | Required | Default |
---|---|---|---|
--target= |
Target language | NO | (all existing locales) |
--api-key= |
API key | YES | |
-f / --full |
Skip partial translation | NO | (partial translation) |
-d / --debug |
Write chat to file | NO | (no chat output) |
Models
Model name | Provider | Context length | Cost per 1k input token | Cost per 1k output token |
---|---|---|---|---|
gpt-3.5-turbo |
Open AI | 4096 | $0.0005 | $0.0015 |
gpt-3.5-turbo-16k |
Open AI | 16384 | $0.003 | $0.004 |
gpt-4 |
Open AI | 8192 | $0.03 | $0.06 |
gpt-4-turbo |
Open AI | 64000 | $0.01 | $0.03 |
gpt-4o |
Open AI | 128000 | $0.005 | $0.015 |
gpt-4o-mini |
Open AI | 128000 | $0.00015 | $0.0006 |
1k tokens = 750 words (English)
GPT context length
Each model has a different context length. Try to avoid exceeding it as the model starts to "forget".
Luckily, slang_gpt supports splitting the input into multiple requests.
The max_input_length
is optional and defaults to some heuristic.
If you work with less common languages and the model starts to forget, try to reduce the max_input_length
.
Alternatively, you can also use a model with a larger context length.
Partial translation
By default, slang_gpt will only translate missing keys to reduce costs.
You may add the --full
flag to translate all keys.
slang-gpt <csproj> --target=ru --api-key=<api-key> --full
To avoid a specific subset of keys from being translated, you may add the ignoreGpt
modifier to the key:
{
"key1": "This will be translated",
"key2(ignoreGpt)": {
"key3": "This will be ignored"
}
}
Target language
By default, slang_gpt will translate to all existing locales.
You may add the --target
flag to translate to a specific locale. This may be useful if you want to translate to a new locale.
Additionally, you may also use predefined language sets (keep in mind that English must be the base locale):
By GDP (Gross Domestic Product):
Flag | Languages |
---|---|
--target=gdp-3 |
["zh-Hans", "es", "ja"] |
--target=gdp-5 |
["zh-Hans", "es", "ja", "de", "fr"] |
--target=gdp-10 |
["zh-Hans", "es", "ja", "de", "fr", "pt", "ar", "it", "ru", "ko"] |
By region and population:
Flag | Languages |
---|---|
--target=eu-3 |
["de", "fr", "it"] |
--target=eu-5 |
["de", "fr", "it", "es", "pl"] |
--target=eu-10 |
["de", "fr", "it", "es", "pl", "ro", "nl", "cs", "el", "sv"] |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
1.1.0 | 44 | 11/25/2024 |