The FrugalGPT framework offers a collection of techniques for building LLM applications with budget constraints.
You can directly run the Google Colab Notebook to experience FrugalGPT. You don't even need API keys to get started with it.
Once you go through the notebook, you'll be ready to build your own LLM applcations with FrugalGPT!
You can also install FrugalGPT locally by running the following commands:
git clone https://github.com/stanford-futuredata/FrugalGPT
cd FrugalGPT
pip install git+https://github.com/stanford-futuredata/FrugalGPT
wget https://github.com/lchen001/DataHolder/releases/download/v0.0.1/HEADLINES.zip
unzip HEADLINES.zip -d strategy/
rm HEADLINES.zip
wget -P db/ https://github.com/lchen001/DataHolder/releases/download/v0.0.1/HEADLINES.sqlite
wget -P db/ https://github.com/lchen001/DataHolder/releases/download/v0.0.1/qa_cache.sqlite
Now you are ready to use the local intro notebook!
You can get an overview via our Twitter threads:
- Introducing FrugalGPT (May 10, 2023)
And read more in the academic paper:
If you use FrugalGPT in a research paper, please cite our work as follows:
@article{chen2023frugalgpt,
title={FrugalGPT: How to Use Large Language Models While Reducing Cost and Improving Performance},
author={Chen, Lingjiao and Zaharia, Matei and Zou, James},
journal={arXiv preprint arXiv:2305.05176},
year={2023}
}