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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linkup-cli
3
- Version: 0.2.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 |
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "linkup-cli"
7
- version = "0.2.0"
7
+ version = "0.3.0"
8
8
  description = "Official CLI for Linkup - AI-powered web search"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,3 +1,3 @@
1
1
  """Linkup CLI - AI-powered web search from your terminal."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.3.0"
@@ -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 (faster) or deep (more thorough). Default: 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",