ArshErgon / LLM-VM

LLM infrastructure for developers

Home Page:https://anarchy.ai/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Anarchy Logo

πŸ€– Anarchy LLM-VM πŸ€–

An Open-Source AGI Server for Open-Source LLMs

This is Anarchy's effort to build πŸ—οΈ an open generalized artificial intelligence πŸ€– through the LLM-VM: a way to give your LLMs superpowers 🦸 and superspeed πŸš„.

You can find detailed instructions to try it live here: anarchy.ai

This project is in BETA. Expect continuous improvement and development.

Table of Contents

πŸ“š About πŸ“š

πŸ’ What is the Anarchy LLM-VM?

The Anarchy LLM-VM is a highly optimized and opinionated backend for running LLMs with all the modern features we've come to expect from completion: tool usage, persistent stateful memory, live data augmentation, data and task fine-tuning, output templating, a web playground, API endpoints, student-teacher distillation, data synthesis, load-balancing and orchestration, large context-window mimicry.

Formally, it is a virtual machine/interpreter for human language, coordinating between data, models (CPU), your prompts (code), and tools (IO).

By doing all these things in one spot in an opinionated way, the LLM-VM can properly optimize batch calls that would be exorbitantly expensive with distributed endpoints. It furthermore strives for both model and architecture agnosticism, properly optimizing the chosen model for the current architecture.

🀌 Why use the Anarchy LLM-VM?

In line with Anarchy's mission, the LLM-VM strives to support open-source models. By utilizing open-source models and running them locally you achieve a number of benefits:

  • Speed up your AGI development πŸš€: With AnarchyAI, one interface is all you need to interact with the latest LLMs available.

  • Lower your costs πŸ’Έ: Running models locally can reduce the pay-as-you-go costs of development and testing.

  • Flexibility πŸ§˜β€β™€οΈ: Anarchy allows you to rapidly switch between popular models so you can pinpoint the exact right tool for your project.

  • Community Vibes πŸ«‚: Join our active community of highly motivated developers and engineers working passionately to democratize AGI

  • WYSIWYG πŸ‘€: Open source means nothing is hidden; we strive for transparency and efficiency so you can focus on building.

🎁 Features and Roadmap

  • Implicit Agents πŸ”§πŸ•΅οΈ: The Anarchy LLM-VM can be set up to use external tools through our agents such as REBEL just by supplying tool descriptions!

  • Inference Optimization πŸš„: The Anarchy LLM-VM is optimized from the agent level all the way to assembly on known LLM architectures to get the most bang for your buck. With state-of-the-art batching, sparse inference and quantization, distillation, and multi-level colocation, we aim to provide the fastest framework available.

  • Task Auto-Optimization πŸš…: The Anarchy LLM-VM will analyze your use cases for repetitive tasks where it can activate student-teacher distillation to train a super-efficient small model from a larger more general model without losing accuracy. It can furthermore take advantage of data-synthesis techniques to improve results.

  • Library Callable πŸ“š: We provide a library that can be used from any Python codebase directly.

  • HTTP Endpoints πŸ•ΈοΈ: We provide an HTTP standalone server to handle completion requests.

  • Live Data Augmentation πŸ“Š: (ROADMAP) You will be able to provide a live updating data set and the Anarchy LLM-VM will fine-tune your models or work with a vector DB to provide up-to-date information with citations

  • Web Playground πŸ›: (ROADMAP) You will be able to run the Anarchy LLM-VM and test its outputs from the browser.

  • Load-Balancing and Orchestration βš–οΈ: (ROADMAP) If you have multiple LLMs or providers you'd like to utilize, you will be able to hand them to the Anarchy LLM-VM to automatically figure out which to work with and when to optimize your uptime or your costs

  • Output Templating 🀡: (ROADMAP) You can ensure that the LLM only outputs data in specific formats and fills in variables from a template with either regular expressions, LMQL, or OpenAI's template language

  • Persistent Stateful Memory πŸ“: (ROADMAP) The Anarchy LLM-VM can remember a user's conversation history and react accordingly

πŸš€ Quickstart πŸš€

πŸ₯Ή Requirements

Installation Requirements

Python >=3.10 Supported. Older versions of Python are on a best-effort basis.

System Requirements

Different models have different system requirements. Limiting factors on most systems will likely be RAM, but many functions will work at even 16 GB of ram.

That said, always lookup information about the models you're using, they all have different sizes and requirements in memory and compute resources.

πŸ‘¨β€πŸ’» Installation

To install the LLM-VM you simply need to download this repository and install it with pip like so:

> git clone https://github.com/anarchy-ai/LLM-VM.git
> cd LLM-VM
> pip3 install .

Developer Setup

the best way to test run code while writing a patch is to use pip3 install --editable ., which will expose the code as a library you can edit in place.

This will install both the library and test-server.

One Last Step, almost there!

If you're using one of the OpenAI models, you will need to set the LLM_VM_OPENAI_API_KEY environment variable with your API key.

βœ… Generating Completions

Our LLM-VM gets you working directly with popular LLMs locally in just 3 lines. Once you've installed it (as above), just load your model and start generating!

# import our client
from llm_vm.client import Client

# Select which LLM you want to use, here we have OpenAI's 
client = Client(big_model = 'chat_gpt')

# Put in your prompt and go!
response = client.complete(prompt = 'What is Anarchy?', context = '', openai_key = 'ENTER_YOUR_API_KEY')
print(response)
# Anarchy is a political ideology that advocates for the absence of government...

πŸƒβ€β™€ Running LLMs Locally

# import our client
from llm_vm.client import Client

# Select the LlaMA model
client = Client(big_model = 'llama')

# Put in your prompt and go!
response = client.complete(prompt = 'What is Anarchy?', context = '')
print(response)
# Anarchy is a political philosophy that advocates no government...

😎 Supported Models

Select from the following models

Supported_Models = ['chat_gpt','gpt','neo','llama','bloom','opt','pythia']

☯ Picking Different Models

LLM-VM default model sizes for local models are intended to make experimentation with LLMs accessible to everyone, but if you have the memory required, larger parameter models will perform far better!

for example, if you want to use a large and small neo model for your teacher and student, and you have enough ram:

# import our client
from llm_vm.client import Client

# Select the LlaMA model
client = Client(big_model = 'neo', big_model_config={'model_uri':'EleutherAI/gpt-neox-20b'}, 
                small_model ='neo', small_model_config={'model_uri':'EleutherAI/gpt-neox-125m'})

# Put in your prompt and go!
response = client.complete(prompt = 'What is Anarchy?', context = '')
print(response)
# Anarchy is a political philosophy that advocates no government...

For some other choices of memory usage and parameter count in each model family, check out the tables in model_uri_tables

πŸ›  Tool Usage

There are two agents: FLAT and REBEL.

Run the agents separately by going into the src/llm_vm/agents/<AGENT_FOLDER> and running the file that is titled agent.py.

Alternatively, to run a simple interface and choose an agent to run from the CLI, run the src/llm_vm/agents/agent_interface.py file and follow the command prompt instructions.

🩷 Contributing 🩷

We welcome contributors! The best way to get started is to join our active discord community. Otherwise here are some ways to contribute and get paid:

Jobs

  • We're always looking for serious hackers. Prove that you can build and creatively solve hard problems and reach out!
  • The easiest way to secure a job/internship with us is to submit a pull request that closes a ticket.
  • The second easiest is to submit good tickets.
  • Otherwise, to apply directly: https://forms.gle/bUWDKW3cwZ8n6qsU8

Bounty

Some tickets we'll pay you for closing! Look at the ticket labels to see how much the bounty is. Note we can't guarantee that if you close a ticket we can pay you (only if you are from a non-US sanctioned country), and it is up to you to reach out and provide bank details.

πŸ™ Acknowledgements πŸ™

License

MIT License

About

LLM infrastructure for developers

https://anarchy.ai/

License:MIT License


Languages

Language:Python 99.9%Language:Shell 0.1%