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

Uploaded Python 3

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

Uploaded CPython 3.12Windows x86-64

lazyllm-0.7.5a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

lazyllm-0.7.5a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

lazyllm-0.7.5a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lazyllm-0.7.5a0-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.5a0-py3-none-any.whl.

File metadata

  • Download URL: lazyllm-0.7.5a0-py3-none-any.whl
  • Upload date:
  • Size: 1.1 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.5a0-py3-none-any.whl
Algorithm Hash digest
SHA256 6c597fff9aad3fcfeb96bd5eee67fb869c01c8e504fd3d39cea7896dc87797ad
MD5 7c302368b7384b795f0cd362b5b86186
BLAKE2b-256 346fe0693e34daac52b805152e63d924322b4d4c2b1ed44dec62ab9d87327c3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.5a0-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.5a0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4183a40079fdc60aaef98d14e66fd90bbebf3cc7501ecf3baa60198dd9e63c2
MD5 760706968fe9fcf16acc3f9a80eea728
BLAKE2b-256 50e78e2a4f5fa0838d4d83f3da500f71645a6eac1f002b7758a3b4189519aa15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.5a0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b26a9fda53d24f11536fccc008dcbbb7962f7ec304dc544591514a462d7bb6a3
MD5 6216d028c8f16d78a3dcc8019876edab
BLAKE2b-256 8941909abca5dc30b70990264f84886bb82754f5993f8349bbb1ac220067116a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.5a0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63e78a93ec09a6876e81d4854fd767d694436129dccfc6b1d0ef7d6997e6a967
MD5 726319006a31ea6726e52e09f4cb4081
BLAKE2b-256 8330d1217185cc9194a58a2f65cc13cc1449209a6e486cad263131190523aa09

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.5a0-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.5a0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a50a945013783b82b69b7677cddf80f77c0fcb6cccf3c1e8d8e8756cd8ceaa6a
MD5 396e7af7db4da03c5219d3aa646ecbc2
BLAKE2b-256 6f67fcacd3d7dc85114ba8478f9d170d3c6e12d7ec1d1afb26140736696d76f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.5a0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b405145a3a8bf0759bad21e45ccd9321280fdecf206bc05559b57aa4718d4d95
MD5 b4112b850cfa176891bd8e61ec76cd12
BLAKE2b-256 bd486a161b6349d692290e84a201ad56c5bda39502db8b272ad3364016140a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.5a0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60d3af24ebf259c7edefa2057034aa12412065672ec92dcfef5159421bd13db3
MD5 efe7e0b0be18107cb0d7bd7fa81a2d8c
BLAKE2b-256 b3fb9bdfdee767fdcc8029a34040f9e0e4243244c6468036938434f7e1af2e9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: lazyllm-0.7.5a0-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.5a0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21d40111cf8105287f9115f57189ebf131dd7bf548f8397cdee71b5873ea88fe
MD5 aa3370256ed81906c45c44e980046d06
BLAKE2b-256 9e7c33c5cfb4f8ba41a716eb56a0b9c36d3730c27e859ff010781e3f21c14acb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.5a0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0603d6b068f9ef32b633fae30d452e8febc5c4602e7de803cbef4d9bed030f15
MD5 0efe4967c212d529929a704e7b5f4159
BLAKE2b-256 788a88291761581305f71be9ca4ea78b9e08eb953cf9d499203bdf059165ae32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for lazyllm-0.7.5a0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2efd5fd4094631fae300c160062da62aa7f1390bf0c78bcfb94423092d6ed63
MD5 daf80e600b980e41c435265cd5cc39a9
BLAKE2b-256 cd884183dfc1432463e5226e4f15d12f3aa19efac5256496682b9f5a21ebe8a1

See more details on using hashes here.

Provenance

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