You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: improve bullet list formatting and simplify description logic
- Fix bullet list formatting: each bullet now on separate line
- Simplify extract_description logic as suggested by reviewer
- Intelligently join regular paragraphs while preserving bullet lists
- Maintain all Issue #1108 requirements (backticks, no mid-sentence breaks)
Addresses feedback from PR #1210
Copy file name to clipboardExpand all lines: docs/docs/core/cli-commands.md
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,15 @@
1
+
<!-- markdownlint-disable MD041 -->
2
+
1
3
## Subcommands Reference
2
4
3
5
### `drop`
4
6
7
+
5
8
Drop the backend setup for flows.
6
9
7
10
Modes of operation: 1. Drop all flows defined in an app: `cocoindex drop <APP_TARGET>` 2. Drop specific named flows: `cocoindex drop <APP_TARGET> [FLOW_NAME...]`
8
11
12
+
9
13
**Usage:**
10
14
11
15
```bash
@@ -23,14 +27,20 @@ cocoindex drop [OPTIONS] [APP_TARGET] [FLOW_NAME]...
23
27
24
28
### `evaluate`
25
29
30
+
26
31
Evaluate the flow and dump flow outputs to files.
27
32
28
33
Instead of updating the index, it dumps what should be indexed to files. Mainly used for evaluation purpose.
29
34
30
-
`APP_FLOW_SPECIFIER`: Specifies the application and optionally the target flow. Can be one of the following formats: - `path/to/your_app.py` - `an_installed.module_name` - `path/to/your_app.py:SpecificFlowName` - `an_installed.module_name:SpecificFlowName`
35
+
`APP_FLOW_SPECIFIER`: Specifies the application and optionally the target flow. Can be one of the following formats:
36
+
-`path/to/your_app.py`
37
+
-`an_installed.module_name`
38
+
-`path/to/your_app.py:SpecificFlowName`
39
+
-`an_installed.module_name:SpecificFlowName`
31
40
32
41
`:SpecificFlowName` can be omitted only if the application defines a single flow.
0 commit comments