File tree 1 file changed +5
-5
lines changed
Mikoto/Translators/Implementations
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ namespace Mikoto.Translators.Implementations
14
14
public class ChatGPTTranslator : ITranslator
15
15
{
16
16
private ChatGPTTranslator ( ) { }
17
- public static readonly string SIGN_UP_URL = "https://platform.openai .com" ;
18
- public static readonly string BILL_URL = "https://platform.openai .com/account/usage " ;
17
+ public static readonly string SIGN_UP_URL = "https://api.deepseek .com" ;
18
+ public static readonly string BILL_URL = "https://api.deepseek .com/user/balance " ;
19
19
public static readonly string DOCUMENT_URL = "https://platform.openai.com/docs/introduction/overview" ;
20
- private string openai_model = "gpt-3.5-turbo " ;
20
+ private string openai_model = "deepseek-chat " ;
21
21
22
- private string ? apiKey ; //ChatGPT翻译API的密钥
23
- private string ? apiUrl ; //ChatGPT翻译API的URL
22
+ private string ? apiKey ; //deepseek翻译API的密钥
23
+ private string ? apiUrl ; //deepseek翻译API的URL
24
24
private string errorInfo = string . Empty ; //错误信息
25
25
26
26
public string TranslatorDisplayName { get { return Application . Current . Resources [ "ChatGPTTranslator" ] . ToString ( ) ! ; } }
You can’t perform that action at this time.
0 commit comments