Skip to content

Commit

Permalink
chore: update appcast.json and info.json
Browse files Browse the repository at this point in the history
  • Loading branch information
liby committed Apr 7, 2023
1 parent 1bd86fa commit 34beaf8
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 64 deletions.
7 changes: 7 additions & 0 deletions appcast.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"identifier": "yetone.openai.translator",
"versions": [
{
"version": "0.2.9",
"desc": "Updated the format of Prompt",
"sha256": "49f3d84f5831c745bdf28abe16baacf77c35ff796e81f055167a35a43cacb2c8",
"url": "https://github.com/yetone/bob-plugin-openai-translator/releases/download/v0.2.9/openai-translator-0.2.9.bobplugin",
"minBobVersion": "0.5.0"
},
{
"version": "0.2.8",
"desc": "Fix the issue of incorrect release version",
Expand Down
128 changes: 64 additions & 64 deletions src/info.json
Original file line number Diff line number Diff line change
@@ -1,73 +1,73 @@
{
"identifier": "yetone.openai.translator",
"version": "0.2.8",
"category": "translate",
"name": "OpenAI Translator",
"summary": "GPT powered translator",
"icon": "",
"author": "yetone <[email protected]>",
"homepage": "https://github.com/yetone/bob-plugin-openai-translator",
"appcast": "https://raw.githubusercontent.com/yetone/bob-plugin-openai-translator/main/appcast.json",
"minBobVersion": "0.5.0",
"options": [
"identifier": "yetone.openai.translator",
"version": "0.2.9",
"category": "translate",
"name": "OpenAI Translator",
"summary": "GPT powered translator",
"icon": "",
"author": "yetone <[email protected]>",
"homepage": "https://github.com/yetone/bob-plugin-openai-translator",
"appcast": "https://raw.githubusercontent.com/yetone/bob-plugin-openai-translator/main/appcast.json",
"minBobVersion": "0.5.0",
"options": [
{
"identifier": "apiUrl",
"type": "text",
"title": "API URL",
"defaultValue": "https://api.openai.com",
"desc": "如果您的网络环境需要代理才能访问 OpenAI API, 可在这里修改为反代 API 的地址,默认为 https://api.openai.com"
},
{
"identifier": "deploymentName",
"type": "text",
"title": "Dep. Name",
"desc": "如果您使用的是 Azure OpenAI Service,需要填写对应的 deployment ID"
},
{
"identifier": "apiKeys",
"type": "text",
"title": "API KEY",
"desc": "可以用英文逗号分割多个 API KEY 以实现额度加倍及负载均衡"
},
{
"identifier": "model",
"type": "menu",
"title": "模型",
"defaultValue": "gpt-3.5-turbo",
"menuValues": [
{
"identifier": "apiUrl",
"type": "text",
"title": "API URL",
"defaultValue": "https://api.openai.com",
"desc": "如果您的网络环境需要代理才能访问 OpenAI API, 可在这里修改为反代 API 的地址,默认为 https://api.openai.com"
"title": "gpt-3.5-turbo-0301",
"value": "gpt-3.5-turbo-0301"
},
{
"identifier": "deploymentName",
"type": "text",
"title": "Dep. Name",
"desc": "如果您使用的是 Azure OpenAI Service,需要填写对应的 deployment ID"
"title": "gpt-3.5-turbo (recommended)",
"value": "gpt-3.5-turbo"
},
{
"identifier": "apiKeys",
"type": "text",
"title": "API KEY",
"desc": "可以用英文逗号分割多个 API KEY 以实现额度加倍及负载均衡"
"title": "gpt-4",
"value": "gpt-4"
},
{
"identifier": "model",
"type": "menu",
"title": "模型",
"defaultValue": "gpt-3.5-turbo",
"menuValues": [
{
"title": "gpt-3.5-turbo-0301",
"value": "gpt-3.5-turbo-0301"
},
{
"title": "gpt-3.5-turbo (recommended)",
"value": "gpt-3.5-turbo"
},
{
"title": "gpt-4",
"value": "gpt-4"
},
{
"title": "gpt-4-0314",
"value": "gpt-4-0314"
},
{
"title": "gpt-4-32k",
"value": "gpt-4-32k"
},
{
"title": "gpt-4-32k-0314",
"value": "gpt-4-32k-0314"
},
{
"title": "text-davinci-003",
"value": "text-davinci-003"
},
{
"title": "text-davinci-002",
"value": "text-davinci-002"
}
]
"title": "gpt-4-0314",
"value": "gpt-4-0314"
},
{
"title": "gpt-4-32k",
"value": "gpt-4-32k"
},
{
"title": "gpt-4-32k-0314",
"value": "gpt-4-32k-0314"
},
{
"title": "text-davinci-003",
"value": "text-davinci-003"
},
{
"title": "text-davinci-002",
"value": "text-davinci-002"
}
]
}
]
}
]
}

0 comments on commit 34beaf8

Please sign in to comment.