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.6a0-py3-none-any.whl (2.2 MB view details)

Uploaded Python 3

lazyllm-0.7.6a0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

lazyllm-0.7.6a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lazyllm-0.7.6a0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lazyllm-0.7.6a0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

lazyllm-0.7.6a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

lazyllm-0.7.6a0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lazyllm-0.7.6a0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

lazyllm-0.7.6a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lazyllm-0.7.6a0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file lazyllm-0.7.6a0-py3-none-any.whl.

File metadata

  • Download URL: lazyllm-0.7.6a0-py3-none-any.whl
  • Upload date:
  • Size: 2.2 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.6a0-py3-none-any.whl
Algorithm Hash digest
SHA256 1abbe9c9efd53ad718ebc7d8032260d7d9258a68c948e3eb60f951ba530af826
MD5 5fe6b88ceaf03288ef3b4ae8abb1ad89
BLAKE2b-256 afa13a1216b7dea1f8bb12da5a439f0d23df7c81f303731fe9596db8a54c682e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.6a0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.6a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 133eb427d20e66856053667cb9d2e7d26acb5da23e76aa111b8d0a9683bbcac5
MD5 580b2fed2191272d07d9bfdd28cef455
BLAKE2b-256 85716fa1df63e51109a245c6c2aed4212f933480e133698681601029c27372a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.6a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6762b252f203b92aaeea8c0af74018510b6b769d5184c81d1f56b4330989299
MD5 ebb7c7e135548f47a7a2e088a15e90b6
BLAKE2b-256 e7d08579f35c706f9f8c031928be2d0e75a9f546cbba7adf013b6612b80f7a56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.6a0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce77979b6eaf81b142778e5ab4afc282f1d50662f50190efd68caadaaef5c9be
MD5 0582aee0b1fc2988b1afa164562c4445
BLAKE2b-256 b36d204a3ee93777c88a3d9c754d768aa0f9ea5a3995566b3ff49028fadcdf61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.6a0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.6a0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b2f6225c38eff2ac92085d02e2464a350c905a203514b66d393a5210d6d054e2
MD5 46d99725327220750c7f2d10a2464de7
BLAKE2b-256 37e93879b943bb6442c21919702c6be9ad749b43d6f23e1f0231632f5e0ae31d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.6a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3424f92b0bdbb40e702c16f5bcdde3873295599b988ea246bb699de0fe5db08
MD5 0d34fd83d7cbf622ca9a5217531ffb9c
BLAKE2b-256 fae454a92650d43a3380696ba564fecb8f829d58c160f67e754364a3f2f3913d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.6a0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 210b43ff60ac47ccfd936bb0ccb4727fbc0fcb2e9b9b23953ab967a9bd00cd3c
MD5 047786d4912d7642929f8070eb53ca9a
BLAKE2b-256 7c87b53f5202617c99abc2b721465842329e3a6b5b17a86a08bd3d7e7a9ef6a7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.6a0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 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.6a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c83b3e048e80717c8b787bd492e737a361bc3d9c4448b3e659bb626d5def6b86
MD5 773a3cc0f793c43b8806ed59bf0019b2
BLAKE2b-256 acb979e75faa80ab6f6c24a6bc3784659b659932d28179241d68f9614c8dd9f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.6a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f05b79ede0863464cb5c1121cfba3cb109b07bb88ff6f2b9193689769b6c966
MD5 b94a41ebc44d10575908e05cf7d4be6c
BLAKE2b-256 ea0d3ad794fb76fe21b1c91f22062efac823cd9454f7c87f1db58e1a83228532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.6a0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 657d692ebe17b15ac3a38fabd71a95cae3cccf4799c1a3b541bb9039e7a65d84
MD5 94e3053b8ae64fb9dd7a737723083e6b
BLAKE2b-256 b764c64b9895e76f0bfce6f9e29415fb3a72c07266c211456ed0874262511c2c

See more details on using hashes here.

Provenance

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