Metadata-Version: 2.4
Name: AllayRT
Version: 26.3.1b1
Summary: AllayRT is a lightweight AI inference engine designed to execute and optimize art models and applications.
Author-email: AllayNet Developers <allay@keemail.me>
License: GNU AFFERO GENERAL PUBLIC LICENSE
        Version 3, 19 November 2007
        
        Copyright (C) 2007 Free Software Foundation, Inc.
        https://www.fsf.org/
        
        Everyone is permitted to copy and distribute verbatim copies
        of this license document, but changing it is not allowed.
        
        ---
        
                               Preamble
        
        The GNU Affero General Public License is a free, copyleft license for
        software and other kinds of works, specifically designed to ensure
        cooperation with the community in the case of network server software.
        
        The licenses for most software are designed to take away your freedom to
        share and change the works. By contrast, our General Public Licenses are
        intended to guarantee your freedom to share and change all versions of a
        program--to make sure it remains free software for all its users.
        
        The GNU Affero General Public License is designed specifically to ensure
        that, in such cases, the modified source code becomes available to the
        community.
        
        ---
        
        TERMS AND CONDITIONS
        
        0. Definitions.
        
        "This License" refers to version 3 of the GNU Affero General Public License.
        
        "The Program" refers to any copyrightable work licensed under this License.
        
        ---
        
        1. Source Code.
        
        The "source code" for a work means the preferred form of the work for making
        modifications to it.
        
        ---
        
        2. Basic Permissions.
        
        All rights granted under this License are granted for the term of copyright
        on the Program.
        
        ---
        
        3. Protecting Users' Legal Rights From Anti-Circumvention Law.
        
        No covered work shall be deemed part of an effective technological measure.
        
        ---
        
        4. Conveying Verbatim Copies.
        
        You may convey verbatim copies of the Program's source code as you receive it.
        
        ---
        
        5. Conveying Modified Source Versions.
        
        You may convey a work based on the Program, provided that you also meet all
        these conditions:
        - The work must carry prominent notices stating that you modified it.
        - The work must be licensed under this License.
        - You must make the source code available.
        
        ---
        
        6. Conveying Non-Source Forms.
        
        You may convey a covered work in object code form under the terms of this License.
        
        ---
        
        7. Additional Terms.
        
        Additional permissions may be added.
        
        ---
        
        8. Termination.
        
        You may not propagate or modify a covered work except as expressly provided.
        
        ---
        
        9. Acceptance Not Required.
        
        You are not required to accept this License.
        
        ---
        
        10. Automatic Licensing of Downstream Recipients.
        
        Each time you convey a covered work, the recipient automatically receives a license.
        
        ---
        
        13. Remote Network Interaction.
        
        If you modify the Program, your modified version must prominently offer all users
        interacting with it remotely through a network an opportunity to receive the
        Corresponding Source.
        
        (This is the key AGPL clause.)
        
        ---
        
        15. Disclaimer of Warranty.
        
        THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY LAW.
        
        ---
        
        16. Limitation of Liability.
        
        IN NO EVENT WILL ANY COPYRIGHT HOLDER BE LIABLE FOR DAMAGES.
        
        ---
        
        END OF TERMS AND CONDITIONS
        
        ---
        
        How to Apply These Terms to Your New Programs
        
        Copyright (C) 2026 AllayNet
        
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU Affero General Public License as published by
        the Free Software Foundation, either version 3 of the License.
        
        This program is distributed in the hope that it will be useful,
        but WITHOUT ANY WARRANTY.
        
        You should have received a copy of the GNU Affero General Public License
        along with this program. If not, see <https://www.gnu.org/licenses/>.
Project-URL: Homepage, https://AllayNet.github.io/AllayRT
Project-URL: Repository, https://github.com/AllayNet/AllayRT
Project-URL: Documentation, https://AllayNet.github.io/AllayRT
Keywords: art,AllayRT
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Dynamic: license-file

# AllayRT - Allay Runtime

AllayRT is a lightweight AI inference engine designed to execute and optimize (`.art`) models and applications.

## Quick Start

```python
from AllayRT import AllayRT

art = AllayRT()
model = art.read_model("model.art")
compiled_model = art.compile_model(model, "CPU")
out = compiled_model.run(img)
```
