系统 · 命令参考
qzx explainFileWithGemini
作用
先预览,并在明确授权后将文件的有限样本发送给 Google Gemini 以获取说明。
命令成熟度:Alpha
可用于真实使用和反馈,但其接口与行为仍可能继续演进。 这是当前开发 checkout 的评估。未来每个不可变发布标签都会保留该版本中包含的准确评估。 可在 PyPI 0.2.2.0.9 使用。文档对应 alpha checkout 0.2.2.0.9。
行为与内置保护
实际模式会应用你请求的更改
提供预览
无需调用原生程序即可运行
为文档所述任务使用网络
设计为无需提权即可运行
默认行为只预览解析后的文件、提供商、指令来源和限制;不读取凭据、不联网,也不共享内容。真实请求要求 dry_run=false 和 apply=true,会限制文件、指令和各采样部分,拒绝二进制文件,并通过请求头发送密钥。结果会报告使用的模型以及与 Google Gemini 共享的源字符精确数量,不返回机密信息或提供商错误正文。
使用文档所述外部服务,并仅共享下方描述的数据。
此安全分类由 OpenAI GPT-5.6 Pro 于 2026-08-25 对照实现摘要 sha256:ddc5d31a339e89383a9157b28bf5aae6e5d38a23b501f9728c1df1bab5d2e571 审阅。
准确语法
qzx explainFileWithGemini <file_path> [sample_size] [model] [custom_prompt] [max_file_size_mb] [dry_run] [apply] --json参数
滑动或使用横向滚动条查看所有列。
| 名称 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
| file_path | str | 是 | 未声明 | 要解释的文本文件路径 |
| sample_size | int | 否 | 500 | 从开头、中间和结尾取样的字符数(10-100000;默认:500) |
| model | str | 否 | "" | 要使用的 Gemini 模型;留空时选择可用的兼容模型 |
| custom_prompt | str | 否 | "" | 在有限样本之前发送给 Gemini 的自定义指令 |
| max_file_size_mb | int | 否 | 10 | 接受的本地文件最大大小(MiB,1-100;默认:10) |
| dry_run | bool | 否 | true | 在不联系 Gemini 的情况下准确预览将共享哪类数据 |
| apply | bool | 否 | false | 授权外部请求;要求 dry_run=false |
输入示例
qzx explainFileWithGemini "path/to/file.txt"不发送文件内容,预览有限样本和外部服务
qzx explainFileWithGemini "path/to/file.txt" 1000 "" "" 10 --dry-run false --apply向 Google Gemini 发送每个采样部分最多 1000 个字符
qzx explainFileWithGemini "path/to/file.txt" 500 "gemini-2.5-flash" "" 10 --dry-run false --apply明确授权后使用特定可用的 Gemini 模型
要获得完整结构化载荷,请添加 --json: qzx explainFileWithGemini <file_path> [sample_size] [model] [custom_prompt] [max_file_size_mb] [dry_run] [apply] --json
代表性输出示例
此示意 JSON 源自当前实现所支持的结果契约。它展示命令可能返回的内容,并不声称这是录制的实际执行;具体值会随输入、设备、权限和可选工具而变化。
示例命令: qzx explainFileWithGemini "path/to/file.txt" --json
{
"success": true,
"message": "Previews and optionally sends bounded file samples to Google Gemini for explanation. In this illustrative example, the command completed successfully.",
"meta": {
"command": "explainFileWithGemini",
"command_maturity": {
"stage": "alpha",
"label": "Alpha",
"sequence": 2,
"public_executable": true,
"stability": "interface_may_change",
"summary": "Available for real use and feedback while its interface and behavior can still evolve.",
"promotion_review_required": false,
"assessment_scope": "development_checkout"
},
"duration_ms": 0,
"schema_version": 1
},
"details": {
"dry_run": true,
"content_shared": true,
"external_service": "Example value"
},
"encoding": "Example value",
"explanation": "Example value",
"external_service": "Example value",
"file_path": "C:\\project\\example.txt",
"file_sha256": "C:\\project\\example.txt",
"file_size_bytes": 4096,
"model_used": "Example value",
"next_step": "Example value",
"sample_size": "Example value",
"usage": "Example value"
}查看 JSON 结果契约
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"required": [
"success",
"message",
"meta"
],
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"meta": {
"type": "object",
"required": [
"command",
"command_maturity",
"duration_ms",
"schema_version"
],
"properties": {
"command": {
"type": "string"
},
"command_maturity": {
"type": "object",
"required": [
"stage",
"label",
"sequence",
"public_executable",
"stability",
"summary",
"promotion_review_required",
"assessment_scope"
],
"properties": {
"stage": {
"type": "string"
},
"label": {
"type": "string"
},
"sequence": {
"type": "integer"
},
"public_executable": {
"type": "boolean"
},
"stability": {
"type": "string"
},
"summary": {
"type": "string"
},
"promotion_review_required": {
"type": "boolean"
},
"assessment_scope": {
"type": "string"
},
"note": {
"type": "string"
},
"review": {
"type": "object",
"required": [
"reviewed_on",
"rationale",
"evidence"
],
"properties": {
"reviewed_on": {
"type": "string",
"format": "date"
},
"rationale": {
"type": "string"
},
"evidence": {
"type": "array",
"minItems": 1,
"items": {
"type": "string"
}
},
"replacement": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": true
},
"duration_ms": {
"type": "number"
},
"schema_version": {
"type": "integer"
}
},
"additionalProperties": true
},
"details": {
"type": "object",
"properties": {
"dry_run": {
"type": "boolean"
},
"content_shared": {
"type": "boolean"
},
"external_service": []
},
"additionalProperties": true
},
"encoding": [],
"error": [],
"error_code": [],
"explanation": [],
"external_service": [],
"file_path": [],
"file_sha256": [],
"file_size_bytes": [],
"model_used": [],
"next_step": {
"type": "string"
},
"sample_size": [],
"usage": []
},
"additionalProperties": true
}错误与限制
公开契约要求失败时返回 success=false 和具有描述性的 message。此目录尚未为每个命令声明专门的错误分类;请检查结果,不要推断不存在的错误码。
QZX 仍处于 alpha 阶段。可选依赖、权限和主机能力可能影响结果。
证据流程:需要获授权的端点或经审阅的 fixture。
证据与来源
- 文档渠道
- 开发文档 0.2.2.0.9 · main · sha256:cfba936e39931c286ca23add0ae546693db17d8b316e7cbc3891d26642d9b7e8
- 可用性
- 0.2.2.0.9 或更早
继续探索
相关命令
这些命令同样属于 系统 类别。对比它们,选择最适合解决任务的操作。