2024-04-15
调整 visual studio code资源管理器缩进
在使用visualstudiocode看到资源管理器中的文件结构挨着特别进不容易看清楚层次结构,那修改一下visualstudiocode配置即可点击vscode》首选项》设置然后顶部搜索“inden
经验与学习 3
2024-04-11
ollama运行自定义模型
ollama有默认的模型,那么怎么运行自定义模型,自己选择下载模型,然后运行呢下面说下自定义模型的运行
AI 2
2024-04-10
in 和not in的优化
在sql查询中经常用到in和notin的where查询操作,最近学习说用EXISTS代替in更快速
数据库 3
2024-04-10
ms sql server 2008 创建用户
mssqlserver2008创建用户并配置对应账户权限
数据库 3
2024-04-08
通过微软azure国内访问openai
国内如何通过微软azureAI平台访问opeanai,这样避免了openai国内无法使用的情况,下面介绍一下如何国内通过azure使用openai
AI 3
2024-04-03
Your system has an unsupported version of sqlite3. Chroma requires sq
ubuntu在安装AIGPTRAG文档代码过程中出现了,下面的错误Yoursystemhasanunsupportedversionofsqlite3.Chromarequiressqlite3&gt
Python 2
2024-04-02
ImportError: cannot import name 'Mapping' from 'collections'
在调用python3.10flask应用扩展时,遇到了ImportError:cannotimportname'Mapping'from'collections'Att
Python 3
2024-04-02
uvicorn 多线程运行python Fastapi
uvicorn启动Python应用程序的命令,可以启动多线程命令,可以是Flask或者FastAPI程序
Python 2