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
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tags:
description: Endpoints for retrieving specific declarations by ID.

servers:
- url: https://www.leanexplore.com/api/v1
- url: https://www.leanexplore.com/api/v2
description: Production LeanExplore API Server

components:
Expand Down
2 changes: 1 addition & 1 deletion src/lean_explore/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,5 +208,5 @@ def create_timestamped_extraction_path() -> pathlib.Path:
R2_ASSETS_BASE_URL: str = "https://pub-48b75babc4664808b15520033423c765.r2.dev"
"""Base URL for Cloudflare R2 asset storage."""

API_BASE_URL: str = "https://www.leanexplore.com/api/v1"
API_BASE_URL: str = "https://www.leanexplore.com/api/v2"
"""Base URL for the LeanExplore remote API service."""