File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -106,10 +106,10 @@ await fetch('http://127.0.0.1:1188/translate', {
106
106
| Environment | Default | Description |
107
107
|---|---|---|
108
108
| ARPK_PORT | 1188 | The port the server will listen on |
109
- | ARPK_MODEL | llama3.1 | Model to be used by the ARPK |
110
109
| ARPK_TOKEN | null | Access token to protect your API |
111
- | ARPK_LLM_BASE_URL | http://127.0.0.1:11434/v1/ | OpenAI-compatible API base url |
112
110
| ARPK_LLM_API_KEY | null | OpenAI-compatible API key |
111
+ | ARPK_LLM_BASE_URL | http://127.0.0.1:11434/v1/ | OpenAI-compatible API base url |
112
+ | ARPK_LLM_MODEL | llama3.1 | Model to be used by the ARPK |
113
113
| ARPK_SYSTEM_PROMPT | https://github.com/moeru-ai/arpk/blob/main/src/lib/prompts.ts | System prompt |
114
114
| ARPK_SOURCE_LANG | null | Translate source language (cli only, `--from`) |
115
115
| ARPK_TARGET_LANG | null | Translate target language (cli only, `--to`) |
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export const flags = {
12
12
type : String ,
13
13
} ,
14
14
model : {
15
- default : env . ARPK_MODEL ?? 'llama3.2' ,
15
+ default : env . ARPK_LLM_MODEL ?? 'llama3.2' ,
16
16
type : String ,
17
17
} ,
18
18
} satisfies Command [ 'options' ] [ 'flags' ]
You can’t perform that action at this time.
0 commit comments