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 dlt/_workspace/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class WorkspaceRuntimeConfiguration(RuntimeConfiguration):
"""Id of the remote workspace that local one should be connected to"""
auth_token: Optional[TSecretStrValue] = None
"""JWT token for Runtime API"""
auth_base_url: Optional[str] = "https://dlthub.app/api/auth"
"""Base URL for the dltHub Runtime authentication API"""
api_key: Optional[TSecretStrValue] = None
"""API key for Runtime API"""
api_base_url: Optional[str] = "https://dlthub.app/api/api"
"""Base URL for the dltHub Runtime API"""
ai_context_api_url: Optional[str] = "https://scaffold.apps.dlthub.com"
Expand Down
1 change: 0 additions & 1 deletion docs/website/docs/hub/runtime/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ log_level = "WARNING"
dlthub_telemetry = true

# Runtime connection settings (set automatically by `dlt runtime login`)
auth_base_url = "https://dlthub.app/api/auth"
api_base_url = "https://dlthub.app/api/api"
workspace_id = "your-workspace-id"
```
Expand Down