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 1st, 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 2026, lasting 3 months, focusing on improving system observability and reducing user debugging costs v0.9 Expected to start from June 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.6)
    • ✅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.7)
  • 9.2.1.2 Data Capabilities
    • Table parsing (V0.6 - 0.7)
    • CAD image parsing (V0.7 -)
  • 9.2.1.3 Algorithm Capabilities
    • Support processing of relatively structured texts like CSV (V0.6)
    • Multi-hop retrieval (links in documents, references, etc.) (V0.6)
    • Information conflict handling (V0.7)
    • AgenticRL & code-writing problem-solving capabilities (V0.7)

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.6)
  • ✅ 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.6)

9.2.6 Development, Deployment and Release

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

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.2a4-py3-none-any.whl (979.3 kB view details)

Uploaded Python 3

lazyllm-0.7.2a4-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

lazyllm-0.7.2a4-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.2a4-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazyllm-0.7.2a4-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

lazyllm-0.7.2a4-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.2a4-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazyllm-0.7.2a4-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

lazyllm-0.7.2a4-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.2a4-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file lazyllm-0.7.2a4-py3-none-any.whl.

File metadata

  • Download URL: lazyllm-0.7.2a4-py3-none-any.whl
  • Upload date:
  • Size: 979.3 kB
  • 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.2a4-py3-none-any.whl
Algorithm Hash digest
SHA256 387b8b1abb4759ead10a43baf389469b7849b1e80d9a80e8ffc25408349c2b75
MD5 1ad1861f359f26fbd95a40e9c4b69df1
BLAKE2b-256 e408235c9b4670d3ea4646527f150364a3c3c38d818443a3143aef3a9c5d061d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: lazyllm-0.7.2a4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.0 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.2a4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7f510bcff548bc93d6c631237a4690a6571ffea38f9a5c20dc488f563e8e987b
MD5 fdfe056d519fcb3125484bb5dca9e3bd
BLAKE2b-256 6d01e006ab09c3c191b3b3cdc384f94733bb14078fe544476b8dacb88ac64e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.2a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9ae6d61391acb90358feab48623b1fb1222c28f4b0ce75223578737b90e9629
MD5 05fe05d2cd465d9567e2dfcb2f3b86e4
BLAKE2b-256 25d381cc972895288741931a4d968877e93052be13f937aa025bc522109d585d

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.2a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef6446b89950e06486b4ac4ec00ab7f27f26715564d551a84c6ab577d35ca6d3
MD5 061eb24be40920cc197332eb61eae87d
BLAKE2b-256 0dcb561a7f9652519ddc7f58b5057b8c90c8dc5b262dc2fbd459cdb608262265

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lazyllm-0.7.2a4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.0 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.2a4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd3a080acff364715109dd0e176ceee8f6317700b2c2c84789460189edf51ea0
MD5 702a6020d2a878e2a4c98122f0c958b1
BLAKE2b-256 80045aeadae8899c1ea9a2e76146510ea29338e156eb7588027429862e158499

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.2a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0050d7be41a221576029b3fee04a69d4b28e2d01d221be9d11f657a684e3ec1e
MD5 c6dac8a1a063acfdd4166452d276e1a0
BLAKE2b-256 823e600019adf3300e5ba7c7c899c1d07b0c3c0935f70c652f6d50df6267f570

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.2a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ff0cd82b5c18d839f4443bdc31acbb5c65ff4088aff5772571dd7bfa669fec0
MD5 9b4ba03c3e7bc729290b670b5b5e74fa
BLAKE2b-256 e0f7f187c5235f08d8a632ac6b4d6bc81a12df8cdefeb835952666098ee570d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lazyllm-0.7.2a4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.0 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.2a4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d4fb5e40260e38562817affbaf9c5ed3154a1d507e75e2a1a69dccf946d5f62
MD5 8eb90757a9ca4f8d4c7d39327f024ab8
BLAKE2b-256 b1b0732d09f7b75215c03584e6884b28aa4298a10d9f035625e854f01c61a951

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.2a4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dae79f03f9a5149439b010ce639cef8755cebc546ec33031c50d03da357712ec
MD5 67108127c9ff4c15a29b98d5169b935b
BLAKE2b-256 8d3b19ced75b07c6aaced82e0f7279eb352d4fd2e9537e97deba4a45d0360718

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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.2a4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lazyllm-0.7.2a4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 330b28e90c07ad3b1843aa76da2da1f931e2c92eb4a69b73cb6ae2e00dd51e2c
MD5 50a7480cc96fa9413337536e365e8b0c
BLAKE2b-256 3f9532298e206cc2a2f50fa70f81c68223d9b1ff72bd964126eeed014ef023e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for lazyllm-0.7.2a4-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