Skip to content

Commit

Permalink
Merge branch 'fix/provider-spark-free-quota-text' into deploy/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zxhlyh committed Sep 20, 2023
2 parents f711f1f + dc0ebaa commit decdfd9
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 7 deletions.
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/help_wanted.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: "🤝 Help Wanted"
description: "Request help from the community"
labels:
- help-wanted
body:
- type: textarea
attributes:
label: Provide a description of the help you need
placeholder: Briefly describe what you need help with.
validations:
required: true
2 changes: 1 addition & 1 deletion api/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def __init__(self):
self.CONSOLE_URL = get_env('CONSOLE_URL')
self.API_URL = get_env('API_URL')
self.APP_URL = get_env('APP_URL')
self.CURRENT_VERSION = "0.3.22"
self.CURRENT_VERSION = "0.3.23"
self.COMMIT_SHA = get_env('COMMIT_SHA')
self.EDITION = "SELF_HOSTED"
self.DEPLOY_ENV = get_env('DEPLOY_ENV')
Expand Down
6 changes: 3 additions & 3 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.1'
services:
# API service
api:
image: langgenius/dify-api:0.3.22
image: langgenius/dify-api:0.3.23
restart: always
environment:
# Startup mode, 'api' starts the API server.
Expand Down Expand Up @@ -124,7 +124,7 @@ services:
# worker service
# The Celery worker for processing the queue.
worker:
image: langgenius/dify-api:0.3.22
image: langgenius/dify-api:0.3.23
restart: always
environment:
# Startup mode, 'worker' starts the Celery worker for processing the queue.
Expand Down Expand Up @@ -176,7 +176,7 @@ services:

# Frontend web application.
web:
image: langgenius/dify-web:0.3.22
image: langgenius/dify-web:0.3.23
restart: always
environment:
EDITION: SELF_HOSTED
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const TIP_MAP: { [k: string]: TypeWithI18N } = {
'zh-Hans': '免费获取 100 万个 token',
},
[ProviderEnumValue.spark]: {
'en': 'Earn 3 million tokens for free',
'zh-Hans': '免费获取 300 万个 token',
'en': 'Earn 6 million tokens for free',
'zh-Hans': '免费获取 600 万个 token',
},
[ProviderEnumValue.zhipuai]: {
'en': 'Earn 10 million tokens for free',
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dify-web",
"version": "0.3.22",
"version": "0.3.23",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
10 changes: 10 additions & 0 deletions web/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3752,7 +3752,11 @@ mdast-util-from-markdown@^0.8.5:
parse-entities "^2.0.0"
unist-util-stringify-position "^2.0.0"

<<<<<<< Updated upstream
mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0, mdast-util-from-markdown@^1.3.0:
=======
mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0:
>>>>>>> Stashed changes
version "1.3.1"
resolved "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz"
integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
Expand Down Expand Up @@ -5368,11 +5372,14 @@ safe-regex@^2.1.1:
dependencies:
regexp-tree "~0.1.1"

<<<<<<< Updated upstream
"safer-buffer@>= 2.1.2 < 3.0.0":
version "2.1.2"
resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==

=======
>>>>>>> Stashed changes
sass@^1.61.0:
version "1.62.1"
resolved "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz"
Expand Down Expand Up @@ -6120,11 +6127,14 @@ web-namespaces@^2.0.0:
resolved "https://registry.npmjs.org/web-namespaces/-/web-namespaces-2.0.1.tgz"
integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==

<<<<<<< Updated upstream
web-worker@^1.2.0:
version "1.2.0"
resolved "https://registry.npmjs.org/web-worker/-/web-worker-1.2.0.tgz"
integrity sha512-PgF341avzqyx60neE9DD+XS26MMNMoUQRz9NOZwW32nPQrF6p77f1htcnjBSEV8BGMKZ16choqUG4hyI0Hx7mA==

=======
>>>>>>> Stashed changes
which-boxed-primitive@^1.0.2:
version "1.0.2"
resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
Expand Down

0 comments on commit decdfd9

Please sign in to comment.