linkup-cli 0.2.0__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {linkup_cli-0.2.0 → linkup_cli-0.3.0}/PKG-INFO +2 -2
- {linkup_cli-0.2.0 → linkup_cli-0.3.0}/README.md +1 -1
- {linkup_cli-0.2.0 → linkup_cli-0.3.0}/pyproject.toml +1 -1
- {linkup_cli-0.2.0 → linkup_cli-0.3.0}/src/linkup_cli/__init__.py +1 -1
- {linkup_cli-0.2.0 → linkup_cli-0.3.0}/src/linkup_cli/cli.py +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: linkup-cli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.0
|
|
4
4
|
Summary: Official CLI for Linkup - AI-powered web search
|
|
5
5
|
Project-URL: Homepage, https://linkup.so
|
|
6
6
|
Project-URL: Documentation, https://docs.linkup.so
|
|
@@ -91,7 +91,7 @@ linkup config
|
|
|
91
91
|
|
|
92
92
|
| Flag | Short | Values | Description |
|
|
93
93
|
|------|-------|--------|-------------|
|
|
94
|
-
| `--depth` | `-d` | `standard`, `deep` | Search depth (default: standard) |
|
|
94
|
+
| `--depth` | `-d` | `fast`, `standard`, `deep` | Search depth (default: standard) |
|
|
95
95
|
| `--output` | `-o` | `sourcedAnswer`, `searchResults` | Output type (default: sourcedAnswer) |
|
|
96
96
|
| `--version` | `-V` | | Show version |
|
|
97
97
|
| `--help` | `-h` | | Show help |
|
|
@@ -63,7 +63,7 @@ linkup config
|
|
|
63
63
|
|
|
64
64
|
| Flag | Short | Values | Description |
|
|
65
65
|
|------|-------|--------|-------------|
|
|
66
|
-
| `--depth` | `-d` | `standard`, `deep` | Search depth (default: standard) |
|
|
66
|
+
| `--depth` | `-d` | `fast`, `standard`, `deep` | Search depth (default: standard) |
|
|
67
67
|
| `--output` | `-o` | `sourcedAnswer`, `searchResults` | Output type (default: sourcedAnswer) |
|
|
68
68
|
| `--version` | `-V` | | Show version |
|
|
69
69
|
| `--help` | `-h` | | Show help |
|
|
@@ -5,7 +5,7 @@ import os
|
|
|
5
5
|
import sys
|
|
6
6
|
|
|
7
7
|
# Valid options
|
|
8
|
-
VALID_DEPTHS = ["standard", "deep"]
|
|
8
|
+
VALID_DEPTHS = ["fast", "standard", "deep"]
|
|
9
9
|
VALID_OUTPUT_TYPES = ["sourcedAnswer", "searchResults"]
|
|
10
10
|
|
|
11
11
|
|
|
@@ -149,7 +149,7 @@ Documentation: https://docs.linkup.so
|
|
|
149
149
|
"--depth", "-d",
|
|
150
150
|
choices=VALID_DEPTHS,
|
|
151
151
|
default="standard",
|
|
152
|
-
help="Search depth: standard (
|
|
152
|
+
help="Search depth: fast (quickest, no LLM), standard (balanced), or deep (most thorough). Default: standard"
|
|
153
153
|
)
|
|
154
154
|
search_parser.add_argument(
|
|
155
155
|
"--output", "-o",
|