Skip to main content

A unified tool to generate fine-tuning datasets for LLMs, including questions, answers, and dialogues.

Project description

EDG4LLM

welcome

GitHub Issues GitHub forks GitHub Repo stars GitHub License Discord Bilibili PyPI - Version PyPI - Downloads PyPI - Python Version

Easy Data Generation For Large Language Model(abbreviated as EDG4LLM), A unified tool to generate fine-tuning datasets for LLMs, including questions, answers, and dialogues.

Table of Contents

Latest News

2025

Introduction

edg4llm is a Python library designed specifically for generating fine-tuning data using large language models. This tool aims to assist users in creating high-quality training datasets efficiently. At its current stage, it mainly supports text data generation. The generated data includes, but is not limited to:

  • Question data
  • Answer data
  • Dialogue data

With edg4llm, users can easily produce diverse datasets tailored to fine-tuning requirements, significantly enhancing the performance of large language models in specific tasks.

Features

EDG4LLM is a unified tool designed to simplify and accelerate the creation of fine-tuning datasets for large language models. With a focus on usability, efficiency, and adaptability, it offers a range of features to meet diverse development needs while ensuring seamless integration and robust debugging support.

  1. Simple to Use: Provides a straightforward interface that allows users to get started without complex configurations.
  2. Lightweight: Minimal dependencies and low resource consumption make it efficient and easy to use.
  3. Flexibility: Supports a variety of data formats and generation options, allowing customization to meet specific needs.
  4. Compatibility: Seamlessly integrates with mainstream large language models and is suitable for various development scenarios.
  5. Transparent Debugging: Provides clear and detailed log outputs, making it easy to debug and trace issues effectively.

Installation

To install edg4llm, simply run the following command in your terminal:

pip install edg4llm

Supported Python Versions

  • Supported Python Versions: Python 3.8 or higher is required for compatibility with this library. Ensure your environment meets this version requirement.

Supported LLM Provider

The current version of edg4llm supports the following large language model providers:

  • ChatGLM
    • Developer: Jointly developed by Tsinghua University and Zhipu AI.
    • Advantages: ChatGLM is an open-source, bilingual dialog language model based on the General Language Model (GLM) architecture. It has been trained on a large corpus of Chinese and English text, making it highly effective for generating natural and contextually relevant responses.
  • DeepSeek
    • Developer: Developed by the DeepSeek team.
    • Advantages: DeepSeek-V3 is a powerful and cost-effective open-source large language model. It offers top-tier performance, especially in tasks like language generation, question answering, and dialog systems.
  • OpenAI ChatGPT
    • Developer: Developed by OpenAI.
    • Advantages: OpenAI's ChatGPT is a highly advanced language model known for its robust text generation capabilities. It has been trained on a vast amount of data, allowing it to generate high-quality and contextually relevant responses.
  • InternLM
    • Developer: Developed by the Shanghai Artificial Intelligence Laboratory.
    • Advantages: InternLM is a series of open-source large language models that offer outstanding reasoning, long-text processing, and tool usage capabilities.

More providers will be added in future updates to extend compatibility and functionality.

Quick Start

To get started with edg4llm, follow the steps below. This example demonstrates how to use the library to generate dialogue data based on a specific prompt.

Prerequisites

  1. Install the edg4llm package:
   pip install edg4llm
  1. Ensure you have Python version 3.8 or higher.

  2. Obtain the necessary API key and base URL for your chosen model provider (e.g., ChatGLM).

Code Example(Chinese Version)

# chatglm_demo.py

import edg4llm
print(edg4llm.__version__)

from edg4llm import EDG4LLM

api_key = "xxx"
base_url = "https://open.bigmodel.cn/api/paas/v4/chat/completions"

edg = EDG4LLM(model_provider='chatglm', model_name="glm-4-flash", base_url=base_url, api_key=api_key)
# 设置测试数据
system_prompt = """你是一个精通中国古代诗词的古文学大师"""

user_prompt = """
    目标: 1. 请生成过年为场景的连续多轮对话记录
            2. 提出的问题要多样化。
            3. 要符合人类的说话习惯。
            4. 严格遵循规则: 请以如下格式返回生成的数据, 只返回JSON格式,json模板:  
                [
                    {{
                        "input":"AAA","output":"BBB" 
                    }}
                ]
                其中input字段表示一个人的话语, output字段表示专家的话语
"""
num_samples = 1  # 只生成一个对话样本

# 调用 generate 方法生成对话
data_dialogue = edg.generate(
    task_type="dialogue",
    system_prompt=system_prompt,
    user_prompt=user_prompt,
    num_samples=num_samples
)

Code Example(English Version)

# chatglm_demo.py

import edg4llm
print(edg4llm.__version__)

from edg4llm import EDG4LLM

api_key = "xxx"
base_url = "https://open.bigmodel.cn/api/paas/v4/chat/completions"

edg = EDG4LLM(model_provider='chatglm', model_name="glm-4-flash", base_url=base_url, api_key=api_key)

# Set the test data
system_prompt = """You are a master of ancient Chinese literature, specializing in classical poetry."""

user_prompt = """
    Goal: 1. Please generate a multi-turn dialogue set in the context of celebrating the Lunar New Year.
          2. The questions should be diverse.
          3. The dialogue should align with natural human conversational habits.
          4. Strictly follow this rule: Please return the generated data in the following format, only in JSON format. JSON template:  
                [
                    {{
                        "input":"AAA","output":"BBB" 
                    }}
                ]
                Where the input field represents a person's dialogue, and the output field represents the expert's response.
"""
num_samples = 1  # Generate only one dialogue sample

# Call the generate method to generate the dialogue
data_dialogue = edg.generate(
    task_type="dialogue",
    system_prompt=system_prompt,
    user_prompt=user_prompt,
    num_samples=num_samples
)

Explanation

  1. Importing the Library: Import the edg4llm library and verify the version using print(edg4llm.version).

  2. Initialization: Use EDG4LLM to initialize the library with the appropriate model provider, model name, base URL, and API key.

  3. Prompts:

    • system_prompt defines the behavior or role of the assistant.
    • user_prompt provides specific instructions for generating data.
  4. Data Generation: Use the generate method with the following parameters:

    • task_type: Defines the type of task (e.g., dialogue, question-answering).
    • system_prompt and user_prompt: Provide context and task-specific instructions.
    • num_samples: Specifies how many samples to generate.
  5. Output: The generated data is returned as a JSON object in the specified format.

Requirements

This project has minimal dependencies, requiring only the requests library. Make sure to have the following version installed:

  • requests>=2.32.3

Future Development Plans

    • [ ] Recording Introduction Video
    • [ ] Support Gemini2
    • [ ] Support local large language models
    • [ ] Support other types of data, such as picture.

Acknowledgments

Project Description
FunGPT An open-source Role-Play project
InternLM A series of advanced open-source large language models
DeepSeek A powerful and cost-effective open-source large language model, excelling in tasks such as language generation, question answering, and dialog systems.
ChatGLM A bilingual dialog language model based on the General Language Model (GLM) architecture, jointly developed by Tsinghua University and Zhipu AI.
ChatGPT A highly advanced language model developed by OpenAI, known for its robust text generation capabilities.

License

MIT License - See LICENSE for details.

Star History

Star History Chart

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

edg4llm-1.0.13.tar.gz (30.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

edg4llm-1.0.13-py3-none-any.whl (42.0 kB view details)

Uploaded Python 3

File details

Details for the file edg4llm-1.0.13.tar.gz.

File metadata

  • Download URL: edg4llm-1.0.13.tar.gz
  • Upload date:
  • Size: 30.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.0

File hashes

Hashes for edg4llm-1.0.13.tar.gz
Algorithm Hash digest
SHA256 ee78cd353733caf51528654b04501b04cf74baa2bed85aa0d2684e658c6e786a
MD5 16049c154dbf73934daa61cac559483c
BLAKE2b-256 76d01e12282adcde4de8f036e0cfce76314c4e6dc8f1cd294d992143b86c9607

See more details on using hashes here.

File details

Details for the file edg4llm-1.0.13-py3-none-any.whl.

File metadata

  • Download URL: edg4llm-1.0.13-py3-none-any.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.0

File hashes

Hashes for edg4llm-1.0.13-py3-none-any.whl
Algorithm Hash digest
SHA256 71d64cb127ee3c4ea8ab4caf092ace3eedab263f21d7d85e2db030aceed8daf8
MD5 d3a299379abc9b66fcfb05eeb3b05a6e
BLAKE2b-256 24480d31964eedfec2b35905645ca85908d774256a6bc67b86119187a3538f76

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page