Skip to content

Commit b42a52e

Browse files
committed
Merge branch 'master' of https://github.com/murex/opencommit into feature/Flowise
2 parents b66da48 + 10b031a commit b42a52e

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

out/cli.cjs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30691,14 +30691,7 @@ var MODEL_LIST = {
3069130691
"claude-3-5-sonnet-20240620",
3069230692
"claude-3-opus-20240229",
3069330693
"claude-3-sonnet-20240229",
30694-
"claude-3-haiku-20240307"
30695-
],
30696-
gemini: [
30697-
"gemini-1.5-flash",
30698-
"gemini-1.5-pro",
30699-
"gemini-1.0-pro",
30700-
"gemini-pro-vision",
30701-
"text-embedding-004"
30694+
"claude-3-opus-20240229"
3070230695
]
3070330696
};
3070430697
var getDefaultModel = (provider4) => {

out/github-action.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49501,7 +49501,7 @@ var MODEL_LIST = {
4950149501
"claude-3-5-sonnet-20240620",
4950249502
"claude-3-opus-20240229",
4950349503
"claude-3-sonnet-20240229",
49504-
"claude-3-haiku-20240307"
49504+
"claude-3-opus-20240229"
4950549505
],
4950649506
gemini: [
4950749507
"gemini-1.5-flash",

src/commands/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ export const getConfig = ({
423423
OCO_GITPUSH: process.env.OCO_GITPUSH === 'false' ? false : true,
424424
OCO_ONE_LINE_COMMIT:
425425
process.env.OCO_ONE_LINE_COMMIT === 'true' ? true : false,
426-
OCO_AZURE_ENDPOINT: process.env.OCO_AZURE_ENDPOINT || '',
426+
OCO_AZURE_ENDPOINT: process.env.OCO_AZURE_ENDPOINT || undefined,
427427
OCO_TEST_MOCK_TYPE: process.env.OCO_TEST_MOCK_TYPE || 'commit-message',
428428
OCO_FLOWISE_ENDPOINT: process.env.OCO_FLOWISE_ENDPOINT || ':',
429429
OCO_FLOWISE_API_KEY: process.env.OCO_FLOWISE_API_KEY || 'undefined'

src/i18n/zh_CN.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"localLanguage": "简体中文",
3-
"commitFix": "修复(server.ts):将端口变量从小写port改为大写PORT",
4-
"commitFeat": "功能(server.ts):添加对process.env.PORT环境变量的支持",
3+
"commitFix": "fix(server.ts):将端口变量从小写port改为大写PORT",
4+
"commitFeat": "feat(server.ts):添加对process.env.PORT环境变量的支持",
55
"commitDescription": "现在端口变量被命名为PORT,这提高了命名约定的一致性,因为PORT是一个常量。环境变量的支持使应用程序更加灵活,因为它现在可以通过process.env.PORT环境变量在任何可用端口上运行。"
66
}

0 commit comments

Comments
 (0)