Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update TA3 to use new configured model endpoints #3759 #179

Merged
merged 2 commits into from
Jun 21, 2024
Merged
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 src/SimulationService.jl
Original file line number Diff line number Diff line change
Expand Up @@ -453,9 +453,9 @@ function get_model(id::String)
@assert ENABLE_TDS[]
@info "get_model($(repr(id)))"

tds_url = "$(TDS_URL[])/model-configurations-legacy/$id"
tds_url = "$(TDS_URL[])/model-configurations/as-configured-model/$id"

JSON3.read(HTTP.get(tds_url, [basic_auth_header[], json_content_header, snake_case_header]).body).configuration
JSON3.read(HTTP.get(tds_url, [basic_auth_header[], json_content_header, snake_case_header]).body)
end

function get_dataset(obj::JSON3.Object)
Expand Down
Loading