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

Uploaded Python 3

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

lazyllm-0.7.2-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.2-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.2-py3-none-any.whl.

File metadata

  • Download URL: lazyllm-0.7.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5bd9815a8a2ae2057ebd8c204403f999cef45189359b9c68a75b6c4eef20498b
MD5 9895d989fc1742890f4f8c0791d5c845
BLAKE2b-256 19578a4a37c64db761f8c0cacec0caa5f83013b9eeac03c11aeb9d87c6ab46d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc892f13a84aed848e95b87ccf405cd4e05484f371a1b37bb14bf37604c6a027
MD5 f59be3c885a03ec16e82b99ea94b5fe8
BLAKE2b-256 13f6b0f974e8cd0636b60e0b36f89e82e7905514b970f3646cbdef7087056853

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74c33c28a37a0e26658a3352e74d9eba0099631e2d4499cac187fd9088c158d7
MD5 6578b4a303cbe0bc8d18790874a2b5e4
BLAKE2b-256 43f158d47e9cb13284e3fa4b40da03cafbc53a6b239a817d0577aced7013650d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad5424478b5403a41a291e37dcc27a3e928d6e9461c111af43183179ac8ce60f
MD5 efeddb8ec1c5fcf8172dc6919f379337
BLAKE2b-256 381fecd0fb619b3dd47f47426094db8d85f783b01666d2263ffca2d178d71125

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92ecfda7ecd5e42291d65b11c7bdc4dad270a49c9af4ed53b20c1a7b0d2927ab
MD5 d07ee381490961e4c05223b795e565d0
BLAKE2b-256 fdd63f979c1d6937e78c7bdd0ed172ac5fecd67b9ca7f55175baa2feda40fad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d67aaa6cdf13917df461d378595cb9e6c12a9495bfbbaadb6997912a94387948
MD5 5f6a013a104f909355c7cf8e56f9e683
BLAKE2b-256 fc84c0d016a0e7b72b90004c93aa19f80178b0e6f6743aaf6241ba041111c40c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e1b744589c4868b90b444cb091d6339590b795a0dded2f98d095c5a6a8c92dc
MD5 a9cb5dac09bddadc5c1fea850b072b35
BLAKE2b-256 10a24b86dafe935b7d3befbb2727e8fb168d01593c66a923ee5c54b9a1e89f7b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6327fbed573dfad3170534d3f4db31e64969fd1c234049c8a1a6db3887677731
MD5 746ac5756ca5abab1c66ae6f49851363
BLAKE2b-256 ac517282dcad7d1355b0c4ac4387406d9ff53e8d6e08eea14834857fea031f16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 957b55985264dec7413d46e05bc39715abedbbb373f1050d5fa92a0af86757c0
MD5 a48a38f911331721f8207da794a489e5
BLAKE2b-256 39aa6fb9303886914adaa7b3eb89a9e0229e0205580fb7db8beefa2384640314

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe7472760f002f49223e6fbbd3d94d0e8ff3ecd5332aee78e85b6e5074c7ddf8
MD5 6fb2037875cd617b4802f5f396e7f260
BLAKE2b-256 9d2798a26c3ce2f36c14924e8ce89f1a61227f9d4472f5a5f817a482f758f183

See more details on using hashes here.

Provenance

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