-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
896f558
commit e95b164
Showing
16 changed files
with
235 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"max_tokens": 256, | ||
"temperature": 0.4, | ||
"top_p": 1.0, | ||
"frequency_penalty": 0, | ||
"presence_penalty": 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: gigachat-plus | ||
display_name: GigaChat-Plus | ||
component_type: Generative | ||
model_type: NN-based | ||
is_customizable: false | ||
author: [email protected] | ||
description: The model is suitable for tasks that require processing a large amount of data. | ||
For example, summarizing articles or call transcriptions, extracting information from documents | ||
ram_usage: 100M | ||
gpu_usage: null | ||
group: services | ||
connector: | ||
protocol: http | ||
timeout: 120.0 | ||
url: http://gigachat-plus-api:8189/respond | ||
dialog_formatter: null | ||
response_formatter: null | ||
previous_services: null | ||
required_previous_services: null | ||
state_manager_method: null | ||
tags: null | ||
endpoint: respond | ||
service: services/gigachat_api_lm/service_configs/gigachat-plus-api | ||
date_created: '2023-12-25T09:45:32' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: gigachat-pro | ||
display_name: GigaChat-Pro | ||
component_type: Generative | ||
model_type: NN-based | ||
is_customizable: false | ||
author: [email protected] | ||
description: GigaChat Pro is suitable for complex, highly specialized tasks, | ||
as it follows instructions better and can perform more complex tasks. | ||
ram_usage: 100M | ||
gpu_usage: null | ||
group: services | ||
connector: | ||
protocol: http | ||
timeout: 120.0 | ||
url: http://gigachat-pro-api:8188/respond | ||
dialog_formatter: null | ||
response_formatter: null | ||
previous_services: null | ||
required_previous_services: null | ||
state_manager_method: null | ||
tags: null | ||
endpoint: respond | ||
service: services/gigachat_api_lm/service_configs/gigachat-pro-api | ||
date_created: '2023-12-25T09:45:32' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
services/gigachat_api_lm/service_configs/gigachat-api/environment.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SERVICE_PORT: 8187 | ||
SERVICE_NAME: gigachat_api | ||
PRETRAINED_MODEL_NAME_OR_PATH: GigaChat:1.3.23.1 | ||
PRETRAINED_MODEL_NAME_OR_PATH: GigaChat | ||
FLASK_APP: server |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
services/gigachat_api_lm/service_configs/gigachat-plus-api/environment.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SERVICE_PORT: 8189 | ||
SERVICE_NAME: gigachat_plus_api | ||
PRETRAINED_MODEL_NAME_OR_PATH: GigaChat-Plus | ||
FLASK_APP: server |
29 changes: 29 additions & 0 deletions
29
services/gigachat_api_lm/service_configs/gigachat-plus-api/service.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: gigachat-plus-api | ||
endpoints: | ||
- respond | ||
- generate_goals | ||
compose: | ||
env_file: | ||
- .env | ||
build: | ||
args: | ||
SERVICE_PORT: 8189 | ||
SERVICE_NAME: gigachat_plus_api | ||
PRETRAINED_MODEL_NAME_OR_PATH: GigaChat-Plus | ||
context: . | ||
dockerfile: ./services/gigachat_api_lm/Dockerfile | ||
command: flask run -h 0.0.0.0 -p 8189 | ||
environment: | ||
- FLASK_APP=server | ||
deploy: | ||
resources: | ||
limits: | ||
memory: 100M | ||
reservations: | ||
memory: 100M | ||
volumes: | ||
- ./services/gigachat_api_lm:/src | ||
- ./common:/src/common | ||
ports: | ||
- 8189:8189 | ||
proxy: null |
4 changes: 4 additions & 0 deletions
4
services/gigachat_api_lm/service_configs/gigachat-pro-api/environment.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
SERVICE_PORT: 8188 | ||
SERVICE_NAME: gigachat_pro_api | ||
PRETRAINED_MODEL_NAME_OR_PATH: GigaChat-Pro | ||
FLASK_APP: server |
29 changes: 29 additions & 0 deletions
29
services/gigachat_api_lm/service_configs/gigachat-pro-api/service.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: gigachat-pro-api | ||
endpoints: | ||
- respond | ||
- generate_goals | ||
compose: | ||
env_file: | ||
- .env | ||
build: | ||
args: | ||
SERVICE_PORT: 8188 | ||
SERVICE_NAME: gigachat_pro_api | ||
PRETRAINED_MODEL_NAME_OR_PATH: GigaChat-Pro | ||
context: . | ||
dockerfile: ./services/gigachat_api_lm/Dockerfile | ||
command: flask run -h 0.0.0.0 -p 8188 | ||
environment: | ||
- FLASK_APP=server | ||
deploy: | ||
resources: | ||
limits: | ||
memory: 100M | ||
reservations: | ||
memory: 100M | ||
volumes: | ||
- ./services/gigachat_api_lm:/src | ||
- ./common:/src/common | ||
ports: | ||
- 8188:8188 | ||
proxy: null |