Skip to main content

A Low-code Development Tool For Building Multi-agent LLMs Applications.

Project description

LazyLLM: A Low-code Development Tool For Building Multi-agent LLMs Applications.

中文 | EN

CI License GitHub star chart

What is LazyLLM?

LazyLLM is a low-code development tool for building multi-agent large language model applications. It assists developers in creating complex AI applications at very low costs and enables continuous iterative optimization. LazyLLM offers a convenient workflow for application building and provides numerous standard processes and tools for various stages of the application development process.
The AI application development process based on LazyLLM follows prototype building -> data feedback -> iterative optimization, which means you can quickly build a prototype application using LazyLLM, then analyze bad cases using task-specific data, and subsequently iterate on algorithms and fine-tune models at critical stages of the application to gradually improve the overall application performance.
LazyLLM is committed to the unity of agility and efficiency. Developers can efficiently iterate algorithms and then apply the iterated algorithms to industrial production, supporting multiple users, fault tolerance, and high concurrency. User Documentationhttps://docs.lazyllm.ai/
Scan the QR code below with WeChat to join the group chat(left) or learn more by watching a video(right)

Features

Convenient AI Application Assembly Process: Even if you are not familiar with large models, you can still easily assemble AI applications with multiple agents using our built-in data flow and functional modules, just like Lego building.

One-Click Deployment of Complex Applications: We offer the capability to deploy all modules with a single click. Specifically, during the POC (Proof of Concept) phase, LazyLLM simplifies the deployment process of multi-agent applications through a lightweight gateway mechanism, solving the problem of sequentially starting each submodule service (such as LLM, Embedding, etc.) and configuring URLs, making the entire process smoother and more efficient. In the application release phase, LazyLLM provides the ability to package images with one click, making it easy to utilize Kubernetes' gateway, load balancing, and fault tolerance capabilities.

Cross-Platform Compatibility: Switch IaaS platforms with one click without modifying code, compatible with bare-metal servers, development machines, Slurm clusters, public clouds, etc. This allows developed applications to be seamlessly migrated to other IaaS platforms, greatly reducing the workload of code modification.

Unified User Experience for Different Technical Choices: We provide a unified user experience for online models from different service providers and locally deployed models, allowing developers to freely switch and upgrade their models for experimentation. In addition, we also unify the user experience for mainstream inference frameworks, fine-tuning frameworks, relational databases, vector databases, and document databases.

Efficient Model Fine-Tuning: Support fine-tuning models within applications to continuously improve application performance. Automatically select the best fine-tuning framework and model splitting strategy based on the fine-tuning scenario. This not only simplifies the maintenance of model iterations but also allows algorithm researchers to focus more on algorithm and data iteration, without handling tedious engineering tasks.

What can you build with Lazyllm

LazyLLM can be used to build common artificial intelligence applications. Here are some examples.

3.1 ChatBots

This is a simple example of a chat bot.

# set environment variable: LAZYLLM_OPENAI_API_KEY=xx 
# or you can make a config file(~/.lazyllm/config.json) and add openai_api_key=xx
import lazyllm
chat = lazyllm.OnlineChatModule()
lazyllm.WebModule(chat).start().wait()

If you want to use a locally deployed model, please ensure you have installed at least one inference framework (lightllm or vllm), and then use the following code

import lazyllm
# Model will be downloaded automatically if you have an internet connection.
chat = lazyllm.TrainableModule('internlm2-chat-7b')
lazyllm.WebModule(chat, port=23466).start().wait()

If you installed lazyllm using pip and ensured that the bin directory of your Python environment is in your $PATH, you can quickly start a chatbot by executing lazyllm run chatbot. If you want to use a local model, you need to specify the model name with the --model parameter. For example, you can start a chatbot based on a local model by using lazyllm run chatbot --model=internlm2-chat-7b.

This is an advanced bot example with multimodality and intent recognition.

Demo Multimodal bot

click to look up prompts and imports
from lazyllm import TrainableModule, WebModule, deploy, pipeline
from lazyllm.tools import IntentClassifier

painter_prompt = 'Now you are a master of drawing prompts, capable of converting any Chinese content entered by the user into English drawing prompts. In this task, you need to convert any input content into English drawing prompts, and you can enrich and expand the prompt content.'
musician_prompt = 'Now you are a master of music composition prompts, capable of converting any Chinese content entered by the user into English music composition prompts. In this task, you need to convert any input content into English music composition prompts, and you can enrich and expand the prompt content.'
base = TrainableModule('internlm2-chat-7b')
with IntentClassifier(base) as ic:
    ic.case['Chat', base]
    ic.case['Speech Recognition', TrainableModule('SenseVoiceSmall')]
    ic.case['Image QA', TrainableModule('InternVL3_5-1B').deploy_method(deploy.LMDeploy)]
    ic.case['Drawing', pipeline(base.share().prompt(painter_prompt), TrainableModule('stable-diffusion-3-medium'))]
    ic.case['Generate Music', pipeline(base.share().prompt(musician_prompt), TrainableModule('musicgen-small'))]
    ic.case['Text to Speech', TrainableModule('ChatTTS')]
WebModule(ic, history=[base], audio=True, port=8847).start().wait()

3.2 Retrieval-Augmented Generation

Demo RAG

Click to view imports and prompt
import os
import lazyllm
from lazyllm import pipeline, parallel, bind, SentenceSplitter, Document, Retriever, Reranker

prompt = 'You will play the role of an AI Q&A assistant and complete a dialogue task. In this task, you need to provide your answer based on the given context and question.'

This is an online deployment example:

documents = Document(dataset_path="your data path", embed=lazyllm.OnlineEmbeddingModule(), manager=False)
documents.create_node_group(name="sentences", transform=SentenceSplitter, chunk_size=1024, chunk_overlap=100)
with pipeline() as ppl:
    with parallel().sum as ppl.prl:
        prl.retriever1 = Retriever(documents, group_name="sentences", similarity="cosine", topk=3)
        prl.retriever2 = Retriever(documents, "CoarseChunk", "bm25_chinese", 0.003, topk=3)

    ppl.reranker = Reranker("ModuleReranker", model="bge-reranker-large", topk=1) | bind(query=ppl.input)
    ppl.formatter = (lambda nodes, query: dict(context_str="".join([node.get_content() for node in nodes]), query=query)) | bind(query=ppl.input)
    ppl.llm = lazyllm.OnlineChatModule(stream=False).prompt(lazyllm.ChatPrompter(prompt, extra_keys=["context_str"]))

lazyllm.WebModule(ppl, port=23466).start().wait()

Here is an example of a local deployment:

documents = Document(dataset_path='/file/to/yourpath', embed=lazyllm.TrainableModule('bge-large-zh-v1.5'))
documents.create_node_group(name="sentences", transform=SentenceSplitter, chunk_size=1024, chunk_overlap=100)

with pipeline() as ppl:
    with parallel().sum as ppl.prl:
        prl.retriever1 = Retriever(documents, group_name="sentences", similarity="cosine", topk=3)
        prl.retriever2 = Retriever(documents, "CoarseChunk", "bm25_chinese", 0.003, topk=3)

    ppl.reranker = Reranker("ModuleReranker", model="bge-reranker-large", topk=1) | bind(query=ppl.input)
    ppl.formatter = (lambda nodes, query: dict(context_str="".join([node.get_content() for node in nodes]), query=query)) | bind(query=ppl.input)
    ppl.llm = lazyllm.TrainableModule("internlm2-chat-7b").prompt(lazyllm.ChatPrompter(prompt, extra_keys=["context_str"]))

lazyllm.WebModule(ppl, port=23456).start().wait()

https://github.com/LazyAGI/LazyLLM/assets/12124621/77267adc-6e40-47b8-96a8-895df165b0ce

If you installed lazyllm using pip and ensured that the bin directory of your Python environment is in your $PATH, you can quickly start a retrieval-augmented bot by executing lazyllm run rag --documents=/file/to/yourpath. If you want to use a local model, you need to specify the model name with the --model parameter. For example, you can start a retrieval-augmented bot based on a local model by using lazyllm run rag --documents=/file/to/yourpath --model=internlm2-chat-7b.

3.3 More Examples

For more examples, please refer to our official documentation Usage Examples

What can LazyLLM do

  1. Application Building: Defines workflows such as pipeline, parallel, diverter, if, switch, and loop. Developers can quickly build multi-agent AI applications based on any functions and modules. Supports one-click deployment for assembled multi-agent applications, and also supports partial or complete updates to the applications.
  2. Platform-independent: Consistent user experience across different computing platforms. Currently compatible with various platforms such as bare metal, Slurm, SenseCore, etc.
  3. Supports fine-tuning and inference for large models:
    • Offline (local) model services:
      • Supports fine-tuning frameworks: collie, peft
      • Supports inference frameworks: lightllm, vllm
      • Supports automatically selecting the most suitable framework and model parameters (such as micro-bs, tp, zero, etc.) based on user scenarios..
    • Online services:
      • Supports fine-tuning services: GPT, SenseNova, Tongyi Qianwen
      • Supports inference services: GPT, SenseNova, Kimi, Zhipu, Tongyi Qianwen
      • Supports embedding inference services: OpenAI, SenseNova, GLM, Tongyi Qianwen
    • Support developers to use local services and online services uniformly.
  4. Supports common RAG (Retrieval-Augmented Generation) components: Document, Parser, Retriever, Reranker, etc.
  5. Supports basic webs: such as chat interface and document management interface, etc.

Installation

pip installation (recommended)

To install only lazyllm and necessary dependencies, you can use:

pip3 install lazyllm

To install lazyllm and all dependencies, you can use:

pip3 install lazyllm
lazyllm install full

Installation from source

git clone git@github.com:LazyAGI/LazyLLM.git
cd LazyLLM
pip install -r requirements.txt

Installation on Windows or macOS

For installation on Windows or macOS, please refer to our tutorial

Design Philosophy

The design philosophy of LazyLLM stems from a deep understanding of the current limitations of large models in production environments. We recognize that at this stage, large models cannot yet fully solve all practical problems end-to-end. Therefore, the AI application development process based on LazyLLM emphasizes "rapid prototyping, bad-case analysis using scenario-specific data, algorithmic experimentation, and model fine-tuning on key aspects to improve the overall application performance." LazyLLM handles the tedious engineering work involved in this process, offering convenient interfaces that allow users to focus on enhancing algorithmic effectiveness and creating outstanding AI applications.

The goal of LazyLLM is to free algorithm researchers and developers from the complexities of engineering implementations, allowing them to concentrate on what they do best: algorithms and data, and solving real-world problems. Whether you are a beginner or an experienced expert, We hope LazyLLM can provide you with some assistance. For novice developers, LazyLLM thoroughly simplifies the AI application development process. They no longer need to worry about how to schedule tasks on different IaaS platforms, understand the details of API service construction, choose frameworks or split models during fine-tuning, or master any web development knowledge. With pre-built components and simple integration operations, novice developers can easily create tools with production value. For seasoned experts, LazyLLM offers a high degree of flexibility. Each module supports customization and extension, enabling users to seamlessly integrate their own algorithms and state-of-the-art production tools to build more powerful applications.

To prevent you from being bogged down by the implementation details of dependent auxiliary tools, LazyLLM strives to ensure a consistent user experience across similar modules. For instance, we have established a set of Prompt rules that provide a uniform usage method for both online models (such as ChatGPT, SenseNova, Kimi, ChatGLM, etc.) and local models. This consistency allows you to easily and flexibly switch between local and online models in your applications.

Unlike most frameworks on the market, LazyLLM carefully selects and integrates 2-3 tools that we believe are the most advantageous at each stage. This not only simplifies the user’s decision-making process but also ensures that users can build the most productive applications at the lowest cost. We do not pursue the quantity of tools or models, but focus on quality and practical effectiveness, committed to providing the optimal solutions. LazyLLM aims to provide a quick, efficient, and low-threshold path for AI application development, freeing developers' creativity, and promoting the adoption and popularization of AI technology in real-world production.

Finally, LazyLLM is a user-centric tool. If you have any ideas or feedback, feel free to leave us a message. We will do our best to address your concerns and ensure that LazyLLM provides you with the convenience you need.

Architecture

Architecture

Basic Concepts

Component

A Component is the smallest execution unit in LazyLLM; it can be either a function or a bash command. Components have three typical capabilities:

  1. Cross-platform execution using a launcher, allowing seamless user experience:
  • EmptyLauncher: Runs locally, supporting development machines, bare metal, etc.
  • RemoteLauncher: Schedules execution on compute nodes, supporting Slurm, SenseCore, etc.
  1. Implements a registration mechanism for grouping and quickly locating methods. Supports registration of functions and bash commands. Here is an example:
import lazyllm
lazyllm.component_register.new_group('demo')

@lazyllm.component_register('demo')
def test(input):
    return f'input is {input}'

@lazyllm.component_register.cmd('demo')
def test_cmd(input):
    return f'echo input is {input}'

# >>> lazyllm.demo.test()(1)
# 'input is 1'
# >>> lazyllm.demo.test_cmd(launcher=launchers.slurm)(2)
# Command: srun -p pat_rd -N 1 --job-name=xf488db3 -n1 bash -c 'echo input is 2'

Module

Modules are the top-level components in LazyLLM, equipped with four key capabilities: training, deployment, inference, and evaluation. Each module can choose to implement some or all of these capabilities, and each capability can be composed of one or more components. As shown in the table below, we have built-in some basic modules for everyone to use.

Function Training/Fine-tuning Deployment Inference Evaluation
ActionModule Can wrap functions, modules, flows, etc., into a Module Supports training/fine-tuning of its Submodules through ActionModule Supports deployment of its Submodules through ActionModule
UrlModule Wraps any URL into a Module to access external services
ServerModule Wraps any function, flow, or Module into an API service
TrainableModule Trainable Module, all supported models are TrainableModules
WebModule Launches a multi-round dialogue interface service
OnlineChatModule Integrates online model fine-tuning and inference services
OnlineEmbeddingModule Integrates online Embedding model inference services

Flow

Flow in LazyLLM defines the data stream, describing how data is passed from one callable object to another. You can use Flow to intuitively and efficiently organize and manage data flow. Based on various predefined Flows, we can easily build and manage complex applications using Modules, Components, Flows, or any callable objects. The Flows currently implemented in LazyLLM include Pipeline, Parallel, Diverter, Warp, IFS, Loop, etc., which can cover almost all application scenarios. Building applications with Flow offers the following advantages:

  1. You can easily combine, add, and replace various modules and components; the design of Flow makes adding new features simple and facilitates collaboration between different modules and even projects.
  2. Through a standardized interface and data flow mechanism, Flow reduces the repetitive work developers face when handling data transfer and transformation. Developers can focus more on core business logic, thus improving overall development efficiency.
  3. Some Flows support asynchronous processing and parallel execution, significantly enhancing response speed and system performance when dealing with large-scale data or complex tasks.

Future Plans

Timeline

  • V0.7 Expected to start from December 15, lasting 3 months, with continuous small version releases in between, such as v0.7.1, v0.7.2
  • v0.8 Expected to start from March 15, 2026, lasting 3 months, focusing on improving system observability and reducing user debugging costs
  • v0.9 Expected to start from June 15, 2026, lasting 3 months, focusing on improving the overall system running speed

Feature Modules

9.2.1 RAG

  • 9.2.1.1 Engineering
    • Integrate LazyRAG capabilities into LazyLLM (V0.7)
    • ✅ Extend RAG's macro Q&A capabilities to multiple knowledge bases (V0.6)
    • ✅ RAG modules fully support horizontal scaling, supporting multi-machine deployment of RAG algorithm collaboration (V0.6)
    • ✅ Integrate at least 1 open-source knowledge graph framework (V0.6)
    • Support common data splitting strategies, no less than 20 types, covering various document types (V0.6 - v0.8)
  • 9.2.1.2 Data Capabilities
    • Table parsing (V0.6 - 0.7)
    • CAD image parsing (V0.7 -)
    • pretrain data processing (V0.8)
  • 9.2.1.3 Algorithm Capabilities
    • Support processing of relatively structured texts like CSV (V0.7)
    • Multi-hop retrieval (links in documents, references, etc.) (V0.7)
    • Information conflict handling (V0.7)
    • AgenticRL & code-writing problem-solving capabilities (V0.7)
    • (new) AI Writter (V0.7 )
    • (new) AI Review (V0.7 - 0.8 )

9.2.2 Functional Modules

  • ✅ Support memory capabilities (V0.6)
  • Support for distributed Launcher (V0.7)
  • ✅ Database-based Globals support (V0.6)
  • ServerModule can be published as MCP service (v0.7)
  • Integration of online sandbox services (v0.7)

9.2.3 Model Training and Inference

  • ✅ Support OpenAI interface deployment and inference (V0.6)
  • Unify fine-tuning and inference prompts (V0.7)
  • Provide fine-tuning examples in Examples (V0.7)
  • Integrate 2-3 prompt repositories, allowing direct selection of prompts from prompt repositories (V0.7)
  • ✅ Support more intelligent model type judgment and inference framework selection, refactor and simplify auto-finetune framework selection logic (V0.6)
  • Full-chain GRPO support (V0.7)

9.2.4 Documentation

  • ✅ Complete API documentation, ensure every public interface has API documentation, with consistent documentation parameters and function parameters, and executable sample code (V0.6)
  • Complete CookBook documentation, increase cases to 50, with comparisons to LangChain/LlamaIndex (code volume, speed, extensibility) (V0.6 - v0.7)
  • ✅ Complete Environment documentation, supplement installation methods on win/linux/macos, supplement package splitting strategies (V0.6)
  • ✅ Complete Learn documentation, first teach how to use large models; then teach how to build agents; then teach how to use workflows; finally teach how to build RAG (V0.6)

9.2.5 Quality

  • ✅ Reduce CI time to within 10 minutes by mocking most modules (V0.6)
  • Add daily builds, put high-time-consuming/token tasks in daily builds (V0.7)

9.2.6 Development, Deployment and Release

  • Debug optimization (v0.7)
  • Process monitoring [output + performance] (v0.7 - 0.8)
  • Environment isolation and automatic environment setup for dependent training and inference frameworks (V0.7)

9.2.7 Ecosystem

  • ✅ Promote LazyCraft open source (V0.6)
  • Promote LazyRAG open source (V0.7)
  • ✅ Upload code to 2 code hosting websites other than Github and strive for community collaboration (V0.6)

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

lazyllm-0.7.4-py3-none-any.whl (1.0 MB view details)

Uploaded Python 3

lazyllm-0.7.4-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

lazyllm-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lazyllm-0.7.4-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazyllm-0.7.4-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

lazyllm-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lazyllm-0.7.4-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazyllm-0.7.4-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

lazyllm-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lazyllm-0.7.4-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file lazyllm-0.7.4-py3-none-any.whl.

File metadata

  • Download URL: lazyllm-0.7.4-py3-none-any.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazyllm-0.7.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9656b26f7ffcf9dbb89f66ecda5040645b83c6b80c13d2a81219d0b3a3103df7
MD5 5b603b02d53b68a2b3892325f8908879
BLAKE2b-256 0a4efe1141c6ec8a25cd0501ca7fbe4da6fdf9a927f7ebce43c4adf8fa8672e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-py3-none-any.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lazyllm-0.7.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazyllm-0.7.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 211407b43a0e0c665fc31e3d4d4a120dfb4ad8a05ea64a8c88e7a369c80fe066
MD5 0466ce68dbb731522679fdb790dee9b7
BLAKE2b-256 2c3a0009d04603bfba8d7de69dde3f853bcfae6d43dcf4ead051b37646267d2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp312-cp312-win_amd64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 311978f5ca740266f12008cf9efec98e21592a28c6ccb774b5ca3b7c815f5c3e
MD5 391d68ad49ced9a155f2759863df3bf7
BLAKE2b-256 1df4f79e29a11e0b31117e299071caf0da69f58bd0640adbfef37b76f03a79fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a36dd367565c83ca690e147f22cb8ac048636e725ed15961b096f087fe1dc40a
MD5 37e9600f7beb3cf2445d7fcd3a7893ef
BLAKE2b-256 10fe176c1c6e969eca2603d20db890f3f13be817354160404875aa28752be07f

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lazyllm-0.7.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazyllm-0.7.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1c465b8eefb591a9384f446f214998e78bdac4c74716eb24110c4061e10a6181
MD5 19b919431e0f9c164bbb30b3b7075f42
BLAKE2b-256 0882e11f3b8f9af4e25b80f70f065e84981e7e7f42f4dd7cb5fe3039298ba3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp311-cp311-win_amd64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfa6ed400d3bd211b95eb492ce7a921cc7da5fddc4dadb97931655a9020073ec
MD5 ccb4994ce3399385a40fa94cf6e4436c
BLAKE2b-256 a5621f4cef53b97f10787b582fd9c7d3b51844d100774a5688b01779211b87ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4996b56892c76187655e339a1bcbbb60a2fb4d49693597fb2b8329d46adc21ed
MD5 38b8b0d4350be4222791a38e93b59d23
BLAKE2b-256 4aaba875f8dc86fd47fc63fabacb93d209cc95c231582533a1ed82eec579a0bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lazyllm-0.7.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for lazyllm-0.7.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04128ef62005e9909e20c14f9d2fb74f669f3368a67668083b04777d9f119037
MD5 472768e82c20a941bbc21b4e3b4e1edb
BLAKE2b-256 10e679f8d4e64b926ff2804630a42232bedd9ee1ea5fe51631cb6596d0151eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp310-cp310-win_amd64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 739774b9bdf74135c8513890a72ca5d8e8aaf78a71b425dce888205acd1ac0ed
MD5 50961a81f5c993e6ba9c90168f89cfe5
BLAKE2b-256 2108847fe32d7e0baac76f3440048877bf43dd957dc04e6544a4a5efaf74e394

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file lazyllm-0.7.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2568048ad48eac6c548ffeb053649a4d10dca98d84ff0c75741c937f3db4d8e
MD5 860f2ba196531c63d649090c58eaa983
BLAKE2b-256 987e75124eda3a83ce8565477afc3d2fcc0092695dcd84dd6a9066a35cb4d8f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish_release.yml on LazyAGI/LazyLLM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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