├── LICENSE ├── README.md ├── README_zh.md ├── assets ├── api_keys │ ├── ChatGLM │ │ ├── api_key1.png │ │ ├── api_key2.png │ │ ├── login_register1.png │ │ ├── login_register2.png │ │ └── resources.png │ ├── DeepSeek │ │ ├── api_key2.png │ │ ├── login_register1.png │ │ ├── login_register2.png │ │ └── resources.png │ └── InternLM │ │ ├── api_key1.png │ │ ├── login_register1.png │ │ ├── login_register2.png │ │ ├── login_register3.png │ │ └── login_register4.png └── welcome.png ├── demos ├── chatglm_demo_v1_0_1.ipynb ├── chatgpt_demo_v1_0_1.ipynb ├── deepseek_demo_v1_0_1.ipynb ├── internlm_demo_v1_0_1.ipynb ├── question.json └── readme.md ├── dist ├── edg4llm-1.0.18-py3-none-any.whl └── edg4llm-1.0.18.tar.gz ├── docs ├── api_keys │ ├── ChatGLM_apply_for_api_key.md │ ├── DeepSeek_apply_for_api_key.md │ └── InternLM_apply_for_api_key.md └── readme.md ├── edg4llm.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── not-zip-safe ├── requires.txt └── top_level.txt ├── edg4llm ├── __init__.py ├── core │ ├── __init__.py │ ├── dataGenerators.py │ ├── interface.py │ └── pipeline.py ├── generators │ ├── __init__.py │ └── text_generators │ │ ├── __init__.py │ │ ├── answer_generator.py │ │ ├── base_generator.py │ │ ├── dialogue_generator.py │ │ └── question_generator.py ├── models │ ├── __init__.py │ ├── baseModel.py │ ├── chatglm.py │ ├── chatgpt.py │ ├── deepseek.py │ └── internlm.py ├── processor │ ├── __init__.py │ ├── postprocess.py │ └── preprocess.py └── utils │ ├── __init__.py │ ├── config.py │ ├── data_utils.py │ ├── exceptions.py │ ├── list_supported_models.py │ ├── logger.py │ └── template.py └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/README_zh.md -------------------------------------------------------------------------------- /assets/api_keys/ChatGLM/api_key1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/ChatGLM/api_key1.png -------------------------------------------------------------------------------- /assets/api_keys/ChatGLM/api_key2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/ChatGLM/api_key2.png -------------------------------------------------------------------------------- /assets/api_keys/ChatGLM/login_register1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/ChatGLM/login_register1.png -------------------------------------------------------------------------------- /assets/api_keys/ChatGLM/login_register2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/ChatGLM/login_register2.png -------------------------------------------------------------------------------- /assets/api_keys/ChatGLM/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/ChatGLM/resources.png -------------------------------------------------------------------------------- /assets/api_keys/DeepSeek/api_key2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/DeepSeek/api_key2.png -------------------------------------------------------------------------------- /assets/api_keys/DeepSeek/login_register1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/DeepSeek/login_register1.png -------------------------------------------------------------------------------- /assets/api_keys/DeepSeek/login_register2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/DeepSeek/login_register2.png -------------------------------------------------------------------------------- /assets/api_keys/DeepSeek/resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/DeepSeek/resources.png -------------------------------------------------------------------------------- /assets/api_keys/InternLM/api_key1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/InternLM/api_key1.png -------------------------------------------------------------------------------- /assets/api_keys/InternLM/login_register1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/InternLM/login_register1.png -------------------------------------------------------------------------------- /assets/api_keys/InternLM/login_register2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/InternLM/login_register2.png -------------------------------------------------------------------------------- /assets/api_keys/InternLM/login_register3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/InternLM/login_register3.png -------------------------------------------------------------------------------- /assets/api_keys/InternLM/login_register4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/api_keys/InternLM/login_register4.png -------------------------------------------------------------------------------- /assets/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/assets/welcome.png -------------------------------------------------------------------------------- /demos/chatglm_demo_v1_0_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/demos/chatglm_demo_v1_0_1.ipynb -------------------------------------------------------------------------------- /demos/chatgpt_demo_v1_0_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/demos/chatgpt_demo_v1_0_1.ipynb -------------------------------------------------------------------------------- /demos/deepseek_demo_v1_0_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/demos/deepseek_demo_v1_0_1.ipynb -------------------------------------------------------------------------------- /demos/internlm_demo_v1_0_1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/demos/internlm_demo_v1_0_1.ipynb -------------------------------------------------------------------------------- /demos/question.json: -------------------------------------------------------------------------------- 1 | [ 2 | {"question": "在这个喜庆的春节,你最喜欢哪种传统习俗?"} 3 | ] -------------------------------------------------------------------------------- /demos/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/edg4llm-1.0.18-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/dist/edg4llm-1.0.18-py3-none-any.whl -------------------------------------------------------------------------------- /dist/edg4llm-1.0.18.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/dist/edg4llm-1.0.18.tar.gz -------------------------------------------------------------------------------- /docs/api_keys/ChatGLM_apply_for_api_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/docs/api_keys/ChatGLM_apply_for_api_key.md -------------------------------------------------------------------------------- /docs/api_keys/DeepSeek_apply_for_api_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/docs/api_keys/DeepSeek_apply_for_api_key.md -------------------------------------------------------------------------------- /docs/api_keys/InternLM_apply_for_api_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/docs/api_keys/InternLM_apply_for_api_key.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edg4llm.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm.egg-info/PKG-INFO -------------------------------------------------------------------------------- /edg4llm.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /edg4llm.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /edg4llm.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm.egg-info/entry_points.txt -------------------------------------------------------------------------------- /edg4llm.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /edg4llm.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | requests>=2.32.3 2 | -------------------------------------------------------------------------------- /edg4llm.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | edg4llm 2 | -------------------------------------------------------------------------------- /edg4llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/__init__.py -------------------------------------------------------------------------------- /edg4llm/core/__init__.py: -------------------------------------------------------------------------------- 1 | from edg4llm.core.interface import EDG4LLM 2 | -------------------------------------------------------------------------------- /edg4llm/core/dataGenerators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/core/dataGenerators.py -------------------------------------------------------------------------------- /edg4llm/core/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/core/interface.py -------------------------------------------------------------------------------- /edg4llm/core/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/core/pipeline.py -------------------------------------------------------------------------------- /edg4llm/generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edg4llm/generators/text_generators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edg4llm/generators/text_generators/answer_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/generators/text_generators/answer_generator.py -------------------------------------------------------------------------------- /edg4llm/generators/text_generators/base_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/generators/text_generators/base_generator.py -------------------------------------------------------------------------------- /edg4llm/generators/text_generators/dialogue_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/generators/text_generators/dialogue_generator.py -------------------------------------------------------------------------------- /edg4llm/generators/text_generators/question_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/generators/text_generators/question_generator.py -------------------------------------------------------------------------------- /edg4llm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edg4llm/models/baseModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/models/baseModel.py -------------------------------------------------------------------------------- /edg4llm/models/chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/models/chatglm.py -------------------------------------------------------------------------------- /edg4llm/models/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/models/chatgpt.py -------------------------------------------------------------------------------- /edg4llm/models/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/models/deepseek.py -------------------------------------------------------------------------------- /edg4llm/models/internlm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/models/internlm.py -------------------------------------------------------------------------------- /edg4llm/processor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edg4llm/processor/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/processor/postprocess.py -------------------------------------------------------------------------------- /edg4llm/processor/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/processor/preprocess.py -------------------------------------------------------------------------------- /edg4llm/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /edg4llm/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/utils/config.py -------------------------------------------------------------------------------- /edg4llm/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/utils/data_utils.py -------------------------------------------------------------------------------- /edg4llm/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/utils/exceptions.py -------------------------------------------------------------------------------- /edg4llm/utils/list_supported_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/utils/list_supported_models.py -------------------------------------------------------------------------------- /edg4llm/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/utils/logger.py -------------------------------------------------------------------------------- /edg4llm/utils/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/edg4llm/utils/template.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alannikos/edg4llm/HEAD/setup.py --------------------------------------------------------------------------------