Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions install-cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,11 @@ main() {
"${BINARY_NAME}" --version 2>/dev/null || true
echo ""
echo "Next steps:"
echo " 1. Authenticate: ${BINARY_NAME} login"
echo " 2. Search: ${BINARY_NAME} search \"your query\""
echo " 3. Extract: ${BINARY_NAME} extract https://example.com"
echo " 4. Enrich: ${BINARY_NAME} enrich run --help"
echo " 1. Authenticate: ${BINARY_NAME} login"
echo " 2. Search: ${BINARY_NAME} search \"Parallel Web Systems\""
echo " 3. Extract: ${BINARY_NAME} extract https://parallel.ai"
echo " 4. Deep Research: ${BINARY_NAME} research run \"Detailed report on the latest AI research\""
echo " 5. Enrich: ${BINARY_NAME} enrich run --help"
echo ""
else
print_error "Installation verification failed"
Expand Down
2 changes: 1 addition & 1 deletion parallel_web_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
run_tasks,
)

__version__ = "0.0.13rc1"
__version__ = "0.0.13rc2"

__all__ = [
# Auth
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Cloud Function dependencies for BigQuery Remote Function
functions-framework>=3.0.0
flask>=3.0.0
parallel-web-tools>=0.0.13rc1
parallel-web-tools>=0.0.13rc2
google-cloud-secret-manager>=2.20.0
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "parallel-web-tools"
version = "0.0.13rc1"
version = "0.0.13rc2"
description = "Parallel Tools: CLI and data enrichment utilities for the Parallel API"
readme = "README.md"
requires-python = ">=3.12"
Expand All @@ -26,7 +26,7 @@ classifiers = [
]

dependencies = [
"parallel-web>=0.4.0",
"parallel-web>=0.4.1",
"python-dotenv>=1.0.0",
# CLI dependencies (minimal - search, extract, enrich with CLI args)
"click>=8.1.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def test_version(self, runner):
"""Should show version."""
result = runner.invoke(main, ["--version"])
assert result.exit_code == 0
assert "0.0.13rc1" in result.output
assert "0.0.13rc2" in result.output


class TestAuthCommand:
Expand Down
10 changes: 5 additions & 5 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.