Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SqueezeAILab/LLMCompiler
[ICML 2024] LLMCompiler: An LLM Compiler for Parallel Function Calling
https://github.com/SqueezeAILab/LLMCompiler
efficient-inference function-calling large-language-models llama llama2 llm llm-agent llm-agents llm-framework llms natural-language-processing nlp parallel-function-call transformer
Last synced: about 7 hours ago
JSON representation
[ICML 2024] LLMCompiler: An LLM Compiler for Parallel Function Calling
- Host: GitHub
- URL: https://github.com/SqueezeAILab/LLMCompiler
- Owner: SqueezeAILab
- License: mit
- Created: 2023-12-06T21:12:54.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-10T04:39:34.000Z (4 months ago)
- Last Synced: 2024-10-29T17:12:19.942Z (10 days ago)
- Topics: efficient-inference, function-calling, large-language-models, llama, llama2, llm, llm-agent, llm-agents, llm-framework, llms, natural-language-processing, nlp, parallel-function-call, transformer
- Language: Python
- Homepage: https://arxiv.org/abs/2312.04511
- Size: 375 KB
- Stars: 1,489
- Watchers: 24
- Forks: 109
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- StarryDivineSky - SqueezeAILab/LLMCompiler
- jimsghstars - SqueezeAILab/LLMCompiler - [ICML 2024] LLMCompiler: An LLM Compiler for Parallel Function Calling (Python)
README
# LLMCompiler: An LLM Compiler for Parallel Function Calling [[Paper](https://arxiv.org/abs/2312.04511)]
![Thumbnail](figs/thumbnail.png)
**LLMCompiler** is a framework that enables an _efficient and effective orchestration of parallel function calling_ with LLMs, including both open-source and close-source models, by automatically identifying which tasks can be performed in parallel and which ones are interdependent.
**TL;DR:**
The reasoning capabilities of LLMs enable them to execute multiple function calls, using user-provided functions to overcome
their inherent limitations (e.g. knowledge cutoffs, poor arithmetic skills, or lack of access to private data).
While multi-function calling allows them to tackle more complex problems,
current methods often require sequential reasoning and acting for each function which can result
in high latency, cost, and sometimes inaccurate behavior.
LLMCompiler addresses this by decomposing problems into multiple tasks
that can be executed in parallel, thereby efficiently orchestrating multi-function calling.
With LLMCompiler, the user specifies the tools
along with optional in-context examples, and **LLMCompiler automatically computes an optimized orchestration for
the function calls**.
LLMCompiler can be used with open-source models such as LLaMA, as well as OpenAIβs GPT models.
Across a range of tasks that exhibit different patterns of parallel function calling, LLMCompiler
consistently demonstrated **latency speedup, cost saving, and accuracy improvement**.
For more details, please check out our [paper](https://arxiv.org/abs/2312.04511).## News
* π [7/9] Friendli endpoints are supported for popular open-source models.
* π¦ [2/13] LLMCompiler is available within the [LangGraph](https://github.com/langchain-ai/langgraph/blob/main/examples/llm-compiler/LLMCompiler.ipynb) framework of [LangChain](https://github.com/langchain-ai).
* π [1/17] Running custom models using vLLM supported
* π¦ [12/29] LLMCompiler is available on [LlamaIndex](https://llamahub.ai/l/llama_packs-agents-llm_compiler?from=llama_packs)---
## Installation1. Create a conda environment and install the dependencies
```
conda create --name llmcompiler python=3.10 -y
conda activate llmcompiler
```2. Clone and install the dependencies
```
git clone https://github.com/SqueezeAILab/LLMCompiler
cd LLMCompiler
pip install -r requirements.txt
```---
## Basic Runs
To reproduce the evaluation results in the paper, run the following command.
You need to first register your OpenAI API key to the environment: `export OPENAI_API_KEY="sk-xxx"`
```
python run_llm_compiler.py --benchmark {benchmark-name} --store {store-path} [--logging] [--stream]
```To run a custom models served using the vLLM framework, run the following command.
Detailed instructions for serving custom models with the vLLM framework can be found in the [vLLM documentation](https://docs.vllm.ai/en/latest/getting_started/quickstart.html#openai-compatible-server).
Note that the pre-defined prompts in the default configuration files are tailored for (non-chat) LLaMA-2 70B and might need adjustments for different models.
```
python run_llm_compiler.py --model_type vllm --benchmark {benchmark-name} --store {store-path} --model_name {vllm-model-name} --vllm_port {vllm-port} [--logging]
```* `--benchmark`: Benchmark name. Use `hotpotqa`, `movie`, and `parallelqa` to evaluate LLMCompiler on the HotpotQA, Movie Recommendation, and ParallelQA benchmarks, respectively.
* `--store`: Path to save the result. Question, true label, prediction, and latency per example will be stored in a JSON format.
* `--logging`: (Optional) Enables logging. Not yet supported for vLLM.
* `--do_benchmark`: (Optional) Do additional benchmarking on detailed run-time statistics.
* `--stream`: (Optional, Recommended) Enables streaming. It improves latency by streaming out tasks from the Planner to the Task Fetching Unit and Executor immediately after their generation, rather than blocking the Executor until all the tasks are generated from the Planner.
* `--react`: (Optional) Use ReAct instead of LLMCompiler for baseline evaluation.### Azure Endpoint
You can optionally use your Azure endpoint instead of OpenAI endpoint with `--model_type azure`. In this case, you need to provide the associated Azure configuration as the following fields in your environment: `AZURE_ENDPOINT`, `AZURE_OPENAI_API_VERSION`, `AZURE_DEPLOYMENT_NAME`, and `AZURE_OPENAI_API_KEY`.### Friendli Endpoint
You can use [Friendli](https://friendli.ai/) endpoint with `--model_type friendli`. In this case, you need to provide Friendli API key in your environment: `FRIENDLI_TOKEN`. Additionally, you need to install Friendli Client:
```
pip install friendli-client
```After the run is over, you can get the summary of the results by running the following command:
```
python evaluate_results.py --file {store-path}
```---
## Adding Your Custom Benchmark
To use LLMCompiler on your custom benchmarks or use cases,
you only need to provide the functions and their descriptions, as well as example prompts.
Please refer to `configs/hotpotqa`, `configs/movie`, and `configs/parallelqa` as examples.* `gpt_prompts.py`: Defines in-context example prompts
* `tools.py`: Defines functions (i.e. tools) to use, and their descriptions (i.e. instructions and arguments)---
## Roadmap
We are planning to update the following features soon:
* Tree-of-Thoughts evaluation we used in the paper---
## CitationLLMCompiler has been developed as part of the following paper. We appreciate it if you would please cite the following paper if you found the library useful for your work:
```
@article{kim2023llmcompiler,
title={An LLM Compiler for Parallel Function Calling},
author={Kim, Sehoon and Moon, Suhong and Tabrizi, Ryan and Lee, Nicholas and Mahoney, Michael and Keutzer, Kurt and Gholami, Amir},
journal={arXiv},
year={2023}
}
```