mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-08-13 22:15:35 +00:00
refactor: rename the data privacy module
rename data privace module.
This commit is contained in:
parent
14ae10d4da
commit
4da524340c
2
.github/workflows/python-publish.yml
vendored
2
.github/workflows/python-publish.yml
vendored
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
# This workflow uses actions that are not certified by GitHub.
|
# This workflow uses actions that are not certified by GitHub.
|
||||||
# They are provided by a third-party and are governed by
|
# They are provided by a third-party and are governed by
|
||||||
# separate terms of service, privacy policy, and support
|
# separate terms of service, data_privacy policy, and support
|
||||||
# documentation.
|
# documentation.
|
||||||
|
|
||||||
name: Upload Python Package
|
name: Upload Python Package
|
||||||
|
@ -4,12 +4,12 @@ import time
|
|||||||
|
|
||||||
from pilot.configs.config import Config
|
from pilot.configs.config import Config
|
||||||
|
|
||||||
from pilot.model.proxy.proxy_llms.chatgpt import chatgpt_generate_stream
|
from pilot.model.proxy.llms.chatgpt import chatgpt_generate_stream
|
||||||
from pilot.model.proxy.proxy_llms.bard import bard_generate_stream
|
from pilot.model.proxy.llms.bard import bard_generate_stream
|
||||||
from pilot.model.proxy.proxy_llms.claude import claude_generate_stream
|
from pilot.model.proxy.llms.claude import claude_generate_stream
|
||||||
from pilot.model.proxy.proxy_llms.wenxin import wenxin_generate_stream
|
from pilot.model.proxy.llms.wenxin import wenxin_generate_stream
|
||||||
from pilot.model.proxy.proxy_llms.tongyi import tongyi_generate_stream
|
from pilot.model.proxy.llms.tongyi import tongyi_generate_stream
|
||||||
from pilot.model.proxy.proxy_llms.gpt4 import gpt4_generate_stream
|
from pilot.model.proxy.llms.gpt4 import gpt4_generate_stream
|
||||||
|
|
||||||
CFG = Config()
|
CFG = Config()
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
"""
|
"""
|
||||||
There are several limitations to privatizing large models: high deployment costs and poor performance.
|
There are several limitations to privatizing large models: high deployment costs and poor performance.
|
||||||
In scenarios where data privacy requirements are relatively low, connecting with commercial large models can enable
|
In scenarios where data data_privacy requirements are relatively low, connecting with commercial large models can enable
|
||||||
rapid and efficient product implementation with high quality.
|
rapid and efficient product implementation with high quality.
|
||||||
"""
|
"""
|
Loading…
Reference in New Issue
Block a user