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
4 changes: 2 additions & 2 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "asta",
"source": "./plugins/asta",
"description": "Paper search, metadata, document management, and theory generation for scientific research",
"version": "0.19.1",
"version": "0.19.2",
"author": {
"name": "Ai2 Asta Team"
},
Expand All @@ -29,7 +29,7 @@
"name": "asta-preview",
"source": "./plugins/asta-preview",
"description": "Paper search, metadata, document management, literature reports, experiments, and theory generation for scientific research",
"version": "0.19.1",
"version": "0.19.2",
"author": {
"name": "Ai2 Asta Team"
},
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta-preview/hooks/sync-cli-version.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Check if asta CLI version matches the plugin version and auto-install/update if needed

PLUGIN_VERSION=0.19.1
PLUGIN_VERSION=0.19.2
INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION"

# Check if asta is installed
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta-preview/skills/asta-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Installs the `asta` CLI for agents that don't install it automatically via a plu
**Prerequisites:** Python 3.11+ and [uv](https://docs.astral.sh/uv/).

```bash
PLUGIN_VERSION=0.19.1
PLUGIN_VERSION=0.19.2
INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION"

if ! command -v asta &> /dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta/hooks/sync-cli-version.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Check if asta CLI version matches the plugin version and auto-install/update if needed

PLUGIN_VERSION=0.19.1
PLUGIN_VERSION=0.19.2
INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION"

# Check if asta is installed
Expand Down
2 changes: 1 addition & 1 deletion plugins/asta/skills/asta-cli/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Installs the `asta` CLI for agents that don't install it automatically via a plu
**Prerequisites:** Python 3.11+ and [uv](https://docs.astral.sh/uv/).

```bash
PLUGIN_VERSION=0.19.1
PLUGIN_VERSION=0.19.2
INSTALL_URL="git+https://github.com/allenai/asta-plugins.git@v$PLUGIN_VERSION"

if ! command -v asta &> /dev/null; then
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "asta"
version = "0.19.1"
version = "0.19.2"
description = "Asta CLI for scientific literature review"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
2 changes: 1 addition & 1 deletion src/asta/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Asta - Science literature research tools"""

__version__ = "0.19.1"
__version__ = "0.19.2"
1 change: 1 addition & 0 deletions src/asta/pdf_extraction/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ def remote(pdf: str, output: str | None, start_page: int, max_pages: int, images
headers={"Authorization": f"Bearer {auth_token}"},
json=request_body,
timeout=120.0,
follow_redirects=True,
)

if not response.is_success:
Expand Down
3 changes: 2 additions & 1 deletion src/asta/utils/asta.conf
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ apis {
# Remote OCR API for PDF text extraction
remote-ocr {
base_url = ${auth.gateway_url}"/api/remote-ocr"
base_url = ${?ASTA_REMOTE_OCR_URL}
}

# Theorizer agent for theory generation
Expand Down Expand Up @@ -83,7 +84,7 @@ passthrough {
tool_name = "asta-documents"
install_type = "pypi"
install_source = "asta-resource-repository"
minimum_version = "0.4.0"
minimum_version = "0.4.1"
command_name = "documents"
docstring = "Manage a local library of documents known to Asta"
}
Expand Down
Loading