Skip to content

Commit 58df7d1

Browse files
committed
feat: Expose queue positions for runs in both the launchpad and the CLI
1 parent b8d04c6 commit 58df7d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+3618
-192
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ codegen:
176176
find codegen/out/aignx/codegen/models/ -name "[a-z]*.py" -type f | sed 's|.*/\(.*\)\.py|\1|' | xargs -I{} echo "from .{} import *" > codegen/out/aignx/codegen/models/__init__.py
177177
# fix resource patch
178178
# in codegen/out/public_api.py replace all occurrences of resource_path='/v1 with resource_path='/api/v1
179-
sed -i '' "s|resource_path='/v1|resource_path='/api/v1|g" codegen/out/aignx/codegen/api/public_api.py
179+
# Use portable sed syntax: -i'' works on both macOS and Linux
180+
sed -i"" "s|resource_path='/v1|resource_path='/api/v1|g" codegen/out/aignx/codegen/api/public_api.py
180181

181182
# Special rule to catch any arguments (like patch, minor, major, pdf, Python versions, or x.y.z)
182183
# This prevents "No rule to make target" errors when passing arguments to make commands

codegen/in/archive/openapi_1.0.0-ga.json

Lines changed: 2766 additions & 0 deletions
Large diffs are not rendered by default.

codegen/in/openapi.json

Lines changed: 112 additions & 21 deletions
Large diffs are not rendered by default.

codegen/out/.openapi-generator/FILES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ aignx/codegen/models/artifact_output.py
1010
aignx/codegen/models/artifact_state.py
1111
aignx/codegen/models/artifact_termination_reason.py
1212
aignx/codegen/models/custom_metadata_update_request.py
13+
aignx/codegen/models/custom_metadata_update_response.py
1314
aignx/codegen/models/http_validation_error.py
1415
aignx/codegen/models/input_artifact.py
1516
aignx/codegen/models/input_artifact_creation_request.py

codegen/out/aignx/codegen/api/public_api.py

Lines changed: 81 additions & 59 deletions
Large diffs are not rendered by default.

codegen/out/aignx/codegen/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Aignostics Platform is a cloud-based service that enables organizations to access advanced computational pathology applications through a secure API. The platform provides standardized access to Aignostics' portfolio of computational pathology solutions, with Atlas H&E-TME serving as an example of the available API endpoints. To begin using the platform, your organization must first be registered by our business support team. If you don't have an account yet, please contact your account manager or email support@aignostics.com to get started. More information about our applications can be found on [https://platform.aignostics.com](https://platform.aignostics.com). **How to authorize and test API endpoints:** 1. Click the \"Authorize\" button in the right corner below 3. Click \"Authorize\" button in the dialog to log in with your Aignostics Platform credentials 4. After successful login, you'll be redirected back and can use \"Try it out\" on any endpoint **Note**: You only need to authorize once per session. The lock icons next to endpoints will show green when authorized.
77
8-
The version of the OpenAPI document: 1.0.0.beta7
8+
The version of the OpenAPI document: 1.0.0-ga
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

codegen/out/aignx/codegen/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Aignostics Platform is a cloud-based service that enables organizations to access advanced computational pathology applications through a secure API. The platform provides standardized access to Aignostics' portfolio of computational pathology solutions, with Atlas H&E-TME serving as an example of the available API endpoints. To begin using the platform, your organization must first be registered by our business support team. If you don't have an account yet, please contact your account manager or email support@aignostics.com to get started. More information about our applications can be found on [https://platform.aignostics.com](https://platform.aignostics.com). **How to authorize and test API endpoints:** 1. Click the \"Authorize\" button in the right corner below 3. Click \"Authorize\" button in the dialog to log in with your Aignostics Platform credentials 4. After successful login, you'll be redirected back and can use \"Try it out\" on any endpoint **Note**: You only need to authorize once per session. The lock icons next to endpoints will show green when authorized.
77
8-
The version of the OpenAPI document: 1.0.0.beta7
8+
The version of the OpenAPI document: 1.0.0-ga
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -502,7 +502,7 @@ def to_debug_report(self) -> str:
502502
return "Python SDK Debug Report:\n"\
503503
"OS: {env}\n"\
504504
"Python Version: {pyversion}\n"\
505-
"Version of the API: 1.0.0.beta7\n"\
505+
"Version of the API: 1.0.0-ga\n"\
506506
"SDK Package Version: 1.0.0".\
507507
format(env=sys.platform, pyversion=sys.version)
508508

codegen/out/aignx/codegen/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Aignostics Platform is a cloud-based service that enables organizations to access advanced computational pathology applications through a secure API. The platform provides standardized access to Aignostics' portfolio of computational pathology solutions, with Atlas H&E-TME serving as an example of the available API endpoints. To begin using the platform, your organization must first be registered by our business support team. If you don't have an account yet, please contact your account manager or email support@aignostics.com to get started. More information about our applications can be found on [https://platform.aignostics.com](https://platform.aignostics.com). **How to authorize and test API endpoints:** 1. Click the \"Authorize\" button in the right corner below 3. Click \"Authorize\" button in the dialog to log in with your Aignostics Platform credentials 4. After successful login, you'll be redirected back and can use \"Try it out\" on any endpoint **Note**: You only need to authorize once per session. The lock icons next to endpoints will show green when authorized.
77
8-
The version of the OpenAPI document: 1.0.0.beta7
8+
The version of the OpenAPI document: 1.0.0-ga
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,35 @@
1-
from .item_result_read_response import *
2-
from .run_output import *
3-
from .artifact_state import *
4-
from .validation_error_loc_inner import *
5-
from .run_state import *
6-
from .item_output import *
7-
from .run_creation_response import *
1+
from .output_artifact_visibility import *
82
from .organization_read_response import *
3+
from .me_read_response import *
4+
from .run_item_statistics import *
95
from .validation_error import *
10-
from .application_read_response import *
11-
from .application_read_short_response import *
6+
from .output_artifact_result_read_response import *
7+
from .version_read_response import *
8+
from .item_output import *
9+
from .run_termination_reason import *
10+
from .run_creation_response import *
1211
from .output_artifact_scope import *
13-
from .me_read_response import *
12+
from .run_output import *
13+
from .item_result_read_response import *
14+
from .application_version import *
15+
from .run_read_response import *
16+
from .run_state import *
1417
from .input_artifact_creation_request import *
15-
from .item_creation_request import *
18+
from .custom_metadata_update_response import *
19+
from .input_artifact import *
20+
from .custom_metadata_update_request import *
1621
from .item_state import *
17-
from .auth0_organization import *
18-
from .application_version import *
19-
from .http_validation_error import *
22+
from .artifact_state import *
23+
from .application_read_short_response import *
24+
from .output_artifact import *
2025
from .user_read_response import *
21-
from .run_termination_reason import *
22-
from .input_artifact import *
23-
from .output_artifact_result_read_response import *
24-
from .version_read_response import *
26+
from .item_termination_reason import *
27+
from .artifact_output import *
28+
from .auth0_organization import *
2529
from .auth0_user import *
26-
from .run_read_response import *
30+
from .item_creation_request import *
31+
from .http_validation_error import *
32+
from .validation_error_loc_inner import *
2733
from .artifact_termination_reason import *
2834
from .run_creation_request import *
29-
from .item_termination_reason import *
30-
from .run_item_statistics import *
31-
from .output_artifact_visibility import *
32-
from .custom_metadata_update_request import *
33-
from .artifact_output import *
34-
from .output_artifact import *
35+
from .application_read_response import *

codegen/out/aignx/codegen/models/application_read_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
The Aignostics Platform is a cloud-based service that enables organizations to access advanced computational pathology applications through a secure API. The platform provides standardized access to Aignostics' portfolio of computational pathology solutions, with Atlas H&E-TME serving as an example of the available API endpoints. To begin using the platform, your organization must first be registered by our business support team. If you don't have an account yet, please contact your account manager or email support@aignostics.com to get started. More information about our applications can be found on [https://platform.aignostics.com](https://platform.aignostics.com). **How to authorize and test API endpoints:** 1. Click the \"Authorize\" button in the right corner below 3. Click \"Authorize\" button in the dialog to log in with your Aignostics Platform credentials 4. After successful login, you'll be redirected back and can use \"Try it out\" on any endpoint **Note**: You only need to authorize once per session. The lock icons next to endpoints will show green when authorized.
77
8-
The version of the OpenAPI document: 1.0.0.beta7
8+
The version of the OpenAPI document: 1.0.0-ga
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)