search-docs | 搜索 Pinecone 官方文档,回答相关问题 | query 查询文本 |
list-indexes | 列出所有 Pinecone 索引 | 无需参数 |
describe-index | 描述某个索引的配置 | name(索引名称) |
describe-index-stats | 提供索引的数据统计信息,包括记录数量和可用的命名空间 | name(索引名称) |
create-index-for-model | 创建一个新的索引,使用集成的推理模型将文本嵌入为向量 | name(索引名称) 、embed 配置 参考 EmbedOption |
upsert-records | 向索引中插入或更新记录,使用集成的推理模型进行文本嵌入 | name(索引名称)、namespace (命令空间,自行指定) records(记录数组) ,例 [{ "_id": "rec1", "chunk_text": "The Eiffel Tower was completed in 1889 and stands in Paris, France.", "category": "history" }] |
search-records | 在索引中搜索记录,使用集成的推理模型进行文本嵌入 | name(索引名称)、namespace (命令空间) 、query(查询配置)参考 QueryOption |