自己pip一下缺少的库,然后使用python main.py就可以啦
运行之后在托盘找到图标,右键设置里面配置baseurl apikey 以及对应的模型名称 代理配置
推荐几家:
零一万物:https://platform.lingyiwanwu.com/details
deepbricks:https://deepbricks.ai/
openai代理:https://ai.ctf.dog
ALT+1 任意输入框调起AI写作
ALT+2 划词后菜单选择可询问划词内容
ALT+3 进行截图,并调起AI提问,需单独配置API
ALT+4 进行多轮对话
- 下载 https://lmstudio.ai/
- 下载模型(无法连接就开启TUN模式)
- 按照下面如图配置
就OJBK了
笔记本4060、4070推荐llama-3-8b模型
- 可以通过源码进行开发
- 或者在软件目录下 _internal\plugins查看插件的代码详情 比如下面的base64解码
import base64
from .base_plugin import BasePlugin
class Base64DecoderPlugin(BasePlugin):
@property
def name(self) -> str:
return "Base64解码"
@property
def description(self) -> str:
return "将Base64编码的文本解码为普通文本"
def process(self, text: str) -> str:
try:
decoded = base64.b64decode(text.encode()).decode()
return f"解码结果:\n{decoded}"
except:
return "无法解码:输入的不是有效的Base64文本"
使用过程中如果无法正常调用流模式,就取消流模式的勾勾,比如wps,等等