Loading

摘要: 机器学习: https://blog.csdn.net/weixin_44789022/article/details/137631634 https://docs.pingcode.com/ask/ask-ask/189158.html 阅读全文
posted @ 2024-06-20 11:13 踩坑大王的日记 阅读(39) 评论(0) 推荐(0)
摘要: hermes desktop版本: v0.19.0 在sub2api部署chatgpt(走授权),在hermes中进行配置 点击Test是正常的,而且能够拉取到可用模型列表 但在chat中出现: 当前已经有pr指出: https://github.com/NousResearch/hermes-ag 阅读全文
posted @ 2026-07-21 22:54 踩坑大王的日记 阅读(8) 评论(0) 推荐(0)
摘要: macbook 1T 用了一年半发现硬盘空间只剩下300g了 settings -> general -> storage settings 检查 Time Machine 本地快照 tmutil listlocalsnapshots / 检查大目录 du -sh ~/Library/* 2>/de 阅读全文
posted @ 2026-07-21 14:11 踩坑大王的日记 阅读(2) 评论(0) 推荐(0)
摘要: 一个专门放celery worker的docker中, 在docker内部安装lireoffice 用于服务内部文件转换, 但是会出现: 首先进入容器确认libreoffice 是否正常 docker exec -it docker_name /bin/bash which soffice soff 阅读全文
posted @ 2026-06-04 14:29 踩坑大王的日记 阅读(14) 评论(0) 推荐(0)
摘要: ckey.run curl -Ls ckey.run -o ckey.run && bash ckey.run 利用开源项目激活 利用开源项目免费申请 JetBrains 激活码,官方申请地址:https://www.jetbrains.com/shop/eform/opensource?produ 阅读全文
posted @ 2026-05-20 09:40 踩坑大王的日记 阅读(135) 评论(0) 推荐(0)
摘要: ssh 隧道映射 ssh -L 18789:127.0.0.1:18789 <username>@<ip> htto 阅读全文
posted @ 2026-04-24 14:08 踩坑大王的日记 阅读(13) 评论(0) 推荐(0)
摘要: 1. 单开手动配置,使用默认main agent 1. 登陆 # 登录微信(扫码) openclaw channels login --channel openclaw-weixin # 重启网关让配置生效 openclaw gateway restart # 查看状态 openclaw chann 阅读全文
posted @ 2026-04-23 17:15 踩坑大王的日记 阅读(224) 评论(0) 推荐(0)
摘要: 方案参考Open WebUI[1]文档中提供的两种方式 服务化方式 Gateway: OPENAPI 兼容API[2] 配置网络,开发兼容API入口 { "gateway": { "http": { "endpoints": { "chatCompletions": { "enabled": tru 阅读全文
posted @ 2026-04-20 16:29 踩坑大王的日记 阅读(296) 评论(0) 推荐(0)
摘要: 参考https://www.reddit.com/r/golang/comments/16px62p/go_vs_python_whats_the_difference_and_is_go_a/?tl=zh-hans 阅读全文
posted @ 2026-04-19 15:50 踩坑大王的日记 阅读(9) 评论(0) 推荐(0)
摘要: IDE: GoLand 1. IDE自动创建项目 初始化项目存在两个文件,如图 2. 手动创建[1] 配置Go Root(Go SDK) 初始化Go Modules go mod init <module_name> # 例如:go mod init my_go_project 此时生成go.mod 阅读全文
posted @ 2026-04-19 15:13 踩坑大王的日记 阅读(23) 评论(0) 推荐(0)
摘要: bot_token 超过24时,用户未发送消息,可能存在掉线 bot连续发送10条后无法主动发送消息,出现{ret:-2}的限制,需要用户主动发送消息解除 阅读全文
posted @ 2026-04-17 09:17 踩坑大王的日记 阅读(85) 评论(0) 推荐(0)
摘要: 使用fast-api搭建服务 当执行单次请求时,响应速度正常 如果并发量提高至60,则耗时在100s 左右 思路: NEW API 阅读全文
posted @ 2026-03-25 16:54 踩坑大王的日记 阅读(11) 评论(0) 推荐(0)
摘要: 问题1: 接入feishu,首次聊天出现 解决: 在openclaw里添加配对码 openclaw pairing approve feishu XXXXXXX 问题2: 更换openclaw模型配置 阅读全文
posted @ 2026-03-02 00:15 踩坑大王的日记 阅读(127) 评论(0) 推荐(0)
摘要: import configparser import unittest from configparser import SectionProxy def test_read_llm_config(provider: str): file = '../llm_config.cfg' config = 阅读全文
posted @ 2025-11-03 18:12 踩坑大王的日记 阅读(17) 评论(0) 推荐(0)
摘要: 默认账号ec2-user 该服务器在旧电脑上有保存密钥对,需要对此做更新和替换 在aws控制台登陆实例: 开放ssh权限 $ sudo -i $ vi /etc/ssh/sshd_config PasswordAuthentication no,把 no 改成 yes #PermitRootLogi 阅读全文
posted @ 2025-11-03 16:17 踩坑大王的日记 阅读(44) 评论(0) 推荐(0)
摘要: 走vlm需要将excel 转换成 pdf 存在一个问题: 当表头过长时,转换后会被分页 因此需要设置参数手动调整 解决方案: https://www.e-iceblue.com/Tutorials/Python/Spire.XLS-for-Python/Program-Guide/Conversio 阅读全文
posted @ 2025-10-29 10:10 踩坑大王的日记 阅读(13) 评论(0) 推荐(0)