We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 867bfdb commit 2000dc6Copy full SHA for 2000dc6
README.md
@@ -135,6 +135,7 @@ The JSON output will have the following structure:
135
136
```json
137
{
138
+ "prompt": "<Generated Prompt>",
139
"directory_name": "codebase",
140
"token_count": 1234,
141
"model_info": "ChatGPT models, text-embedding-ada-002",
src/main.rs
@@ -173,6 +173,7 @@ fn main() -> Result<()> {
173
174
if args.json {
175
let json_output = json!({
176
+ "prompt": rendered,
177
"directory_name": label(&args.path),
178
"token_count": token_count,
179
"model_info": model_info,
0 commit comments