Ship production-ready LLM projects with FastAPI
Project description
Lanarky is an open-source framework to deploy LLM applications in production. It is built on top of FastAPI and comes with batteries included.
🚀 Features
- supports LangChain
- simple gradio chatbot UI for fast prototyping
See Roadmap for upcoming features.
❓ Why?
There are great low-code/no-code solutions in the open source to deploy your LLM projects. However, most of them are opinionated in terms of cloud or deployment code. This project aims to provide users with a cloud-agnostic and deployment-agnostic solution which can be easily integrated into existing backend infrastructures.
💾 Installation
The library is available on PyPI and can be installed via pip
.
pip install lanarky
You can find the full documentation at https://lanarky.readthedocs.io/en/latest/.
🔥 Build your first Langchain app
from dotenv import load_dotenv
from fastapi import FastAPI
from langchain import ConversationChain
from langchain.chat_models import ChatOpenAI
from lanarky.routing import LangchainRouter
load_dotenv()
app = FastAPI()
langchain_router = LangchainRouter(
langchain_object=ConversationChain(
llm=ChatOpenAI(temperature=0), verbose=True
)
)
app.include_router(langchain_router)
See examples/
for list of available demo examples.
Create a .env
file using .env.sample
and add your OpenAI API key to it
before running the examples.
📍 Roadmap
- Add support for LangChain
- Add Gradio UI for fast prototyping
- Add SQL database integration
- Add support for Guardrails
- Add support for LlamaIndex
- Add GPTCache integration
🤩 Stargazers
Leave a ⭐ if you find this project useful.
🤝 Contributing
Contributions are more than welcome! If you have an idea for a new feature or want to help improve lanarky, please create an issue or submit a pull request on GitHub.
See CONTRIBUTING.md for more information.
Contributors
⚖️ License
The library is released under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.