Skip to content

Commit ad2934b

Browse files
committed
replace asta-rc with asta
1 parent 8b5680f commit ad2934b

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

skills/literature-understanding/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Thread: abc123
5757
Papers found: 14
5858
Session: ~/.asta/literature/sessions/2026-03-09-143052-protein-folding/
5959
Results: ~/.asta/literature/sessions/.../results-01-protein-folding.json
60-
Asta: REDACTED_ASTA_RC_URL/share/abc123
60+
Asta: REDACTED_ASTA_PROD_URL/share/abc123
6161
```
6262

6363
You can also write to a custom path (`-o results.json`) or stdout (`-o -`).
@@ -81,7 +81,7 @@ Top hits:
8181
2. ...
8282
Session: ~/.asta/literature/sessions/2026-03-09-143052-protein-folding/
8383
Results: ~/.asta/literature/sessions/.../results-02-focus-on-diffusion-models.json
84-
Asta: REDACTED_ASTA_RC_URL/share/abc123
84+
Asta: REDACTED_ASTA_PROD_URL/share/abc123
8585
```
8686

8787
### 3. Manage Sessions
@@ -201,7 +201,7 @@ Example:
201201

202202
```
203203
**Links:**
204-
- Asta: REDACTED_ASTA_RC_URL/share/abc123
204+
- Asta: REDACTED_ASTA_PROD_URL/share/abc123
205205
- Session: file:///Users/markpolak/.asta/literature/sessions/2026-03-09-143052-protein-folding/
206206
- Results: file:///Users/markpolak/.asta/literature/sessions/.../results-01-protein-folding.json
207207
```

src/asta/core/client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ def __init__(
2222
mabool_url: str | None = None,
2323
user_id: str | None = None,
2424
):
25-
# Temp: use asta-rc until the workers profile in asta.allen.ai points to: REDACTED_MABOOL_WORKERS_URL
2625
self.base_url = base_url or os.environ.get(
27-
"ASTA_API_URL", "REDACTED_ASTA_RC_URL"
26+
"ASTA_API_URL", "REDACTED_ASTA_PROD_URL"
2827
)
2928
self.mabool_url = mabool_url or os.environ.get(
3029
"ASTA_MABOOL_URL", "REDACTED_MABOOL_WORKERS_URL"

0 commit comments

Comments
 (0)