Python SDK 发布
Here’s the table of contents:
私有仓库发布
配置Home-User目录下的.pypirc文件
打包
上传
开源仓库发布
确认已经配置setup.py文件
在pypi挂网注册账号
生成 API token
在github仓库设置token
配置yml文件
参考项目
私有仓库发布
配置Home-User目录下的.pypirc文件
[distutils]
index-servers =
nexus
[nexus]
repository = http://localhost:8080/...
Java SDK 发布
Here’s the table of contents:
远程仓库发布
远程仓库发布
<!--在pom文件中配置distributionManagement内容,然后运行mvn命令进行打包发布-->
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://ma...
使用Neo4j和LangChain实现“从本地到全局”的GraphRAG
Here’s the table of contents:
使用Neo4j和LangChain实现“从本地到全局”的GraphRAG
重点摘要
索引—图生成
检索—回答
设置 Neo4j 环境
数据集
文本分块
提取节点和关系
实体解析
元素总结
构建和总结社区
总结
使用Neo4j和LangChain实现“从本地到全局”的GraphRAG
GraphRAG是一种基于知识图谱的检索增强技术。它使用多来源数据构建图模型的知识表达,将实体和关系之间的联系以图的...
Finclip代码管理
Here’s the table of contents:
Conventional Commits格式
配置Git用户-局部
配置Git用户-全局
Conventional Commits格式
fix: 修复App.vue内容
feat: add new feature X
docs: 更新README.md
配置Git用户-局部
git config user.name "Your Name"
git config user.email "your.email@example.com"
配置Git用户-全局
git config --global user.name "Your Name"
git config --global user.email "...
使用Nvm管理多版本Node.js环境
Here’s the table of contents:
安装Nvm
安装指定版本Node.js
切换到Node.js指定版本
验证安装
设置默认版本
安装Nvm
访问nvm-windows的GitHub页面
安装指定版本Node.js
nvm install 18.18.0
切换到Node.js指定版本
nvm use 18.18.0
验证安装
node -v
npm -v
设置默认版本
nvm alias default 18.18.0
UI与UX 设计工具
Here’s the table of contents:
UI/UX 设计工具
小程序页面设计
UI/UX 设计工具
Galileo AI
Uizard
Framer
Visily
Creatie
墨刀
即时设计
Pixso
Figma
BUI
小程序页面设计
小程序页面设计综述1
小程序页面设计综述2
小程序页面设计规范1
小程序页面设计规范2
小程序页面设计参考1
AI-3D 项目
Here’s the table of contents:
AI-3D 项目
3D模型生成小程序
AI-3D 项目
Luma AI 【不支持从图片生成】【文生3D,处于领先地位】
Meshy 【人像不行】
Tripo 【人像面部还行,其它细节不行】【公开评测结果较好】【图生3D、文生3D,Tripo是断层式领先】
CSM 【人像不行】
SudoAI 【人像不行】
Style2Fab
Latte3D
voxcraft 【人像不行】
Stability AI - TripoSR
OpenAI Shap-E
英伟达发布 GET3D 和 Magic3D
Point-E
Stable Dreamfusion
Move.AI
...
常用CYPHER查询(五)
Here’s the table of contents:
Graph RAG 通常引用的格式
多标签并发查询
将查询结果转换为树结构
日期处理
Graph RAG 通常引用的格式
MATCH p=(n:图谱大纲)-[r*..2]-()
WHERE ANY(word IN ['cpi'] WHERE n.topic CONTAINS UPPER(word))
WITH NODES(p) AS nodes, RELATIONSHIPS(p) AS rels
RETURN REDUCE(s = '', i IN RANGE(0, SIZE(nodes) - 2) | s + nodes[i].topic + ', ' + (CASE WHEN STARTNODE(re...
121 post articles, 16 pages.