Skip to main content
Open In ColabOpen on GitHub

OpenLLM

🦾 OpenLLM 让开发者能够通过单一命令运行任何开源LLMs作为OpenAI兼容的API端点。

  • 🔬 为快速和生产用途构建
  • 🚂 支持 llama3、qwen2、gemma 等,以及许多量化版本 完整列表
  • ⛓️ OpenAI兼容的API
  • 💬 内置类似ChatGPT的用户界面
  • 🔥 使用最先进的推理后端加速LLM解码
  • 🌥️ 准备好用于企业级云部署(Kubernetes、Docker 和 BentoCloud)

安装

通过PyPI安装openllm

%pip install --upgrade --quiet  openllm

本地启动 OpenLLM 服务器

要启动一个LLM服务器,请使用openllm hello命令:

openllm hello

包装器

from langchain_community.llms import OpenLLM

server_url = "http://localhost:3000" # Replace with remote host if you are running on a remote server
llm = OpenLLM(base_url=server_url, api_key="na")
API Reference:OpenLLM
llm("To build a LLM from scratch, the following are the steps:")

这个页面有帮助吗?