KoboldAI API
KoboldAI 是一个“基于浏览器的前端,用于使用多个本地和远程AI模型进行AI辅助写作...”。它有一个公共和本地的API,可以在langchain中使用。
这个例子介绍了如何使用LangChain与该API。
文档可以在浏览器中找到,只需在您的端点末尾添加/api(即 http://127.0.0.1/:5000/api)。
from langchain_community.llms import KoboldApiLLM
API Reference:KoboldApiLLM
将下面看到的端点替换为使用 --api 或 --public-api 启动 webui 后输出中显示的端点
可选地,您可以传入像temperature或max_length这样的参数
llm = KoboldApiLLM(endpoint="http://192.168.1.144:5000", max_length=80)
response = llm.invoke(
"### Instruction:\nWhat is the first book of the bible?\n### Response:"
)
相关
- LLM 概念指南
- LLM how-to guides