Skip to content

Commit 1fec677

Browse files
update TODOs re: configuratbility to reference new issue #27
1 parent 65ed1d0 commit 1fec677

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/anyvlm/schemas/vlm.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ class HandoverType(BaseModel):
1616

1717
id: str = Field(
1818
default="gregor", description="Node-specific identifier"
19-
) # TODO: verify what to use here. In the future this should be set dynamically.
19+
) # TODO: enable configuration of this field. See Issue #27.
2020
label: str = Field(
2121
default="GREGoR AnVIL browser", description="Node-specific label"
22-
) # TODO: verify what to use here. In the future this should be set dynamically.
22+
) # TODO: enable configuration of this field. See Issue #27.
2323

2424

2525
class BeaconHandover(BaseModel):
2626
"""Describes how users can get more information about the results provided in the parent `VlmResponse`"""
2727

2828
handoverType: HandoverType = HandoverType()
2929
url: str = Field(
30-
default="https://anvil.terra.bio/#workspaces?filter=GREGoR", # TODO: verify what to use here. In the future this should be set dynamically.
30+
default="https://anvil.terra.bio/#workspaces?filter=GREGoR", # TODO: enable configuration of this field. See Issue #27.
3131
description="A url which directs users to more detailed information about the results tabulated by the API (ideally human-readable)",
3232
)
3333

@@ -54,7 +54,7 @@ class Meta(BaseModel):
5454
description="The version of the VLM API that this response conforms to",
5555
)
5656
beaconId: str = Field(
57-
default="org.gregor.beacon", # TODO: verify what to use here. In the future this should be set dynamically.
57+
default="org.gregor.beacon", # TODO: enable configuration of this field. See Issue #27.
5858
description="""
5959
The Id of a Beacon. Usually a reversed domain string, but any URI is acceptable. The purpose of this attribute is,
6060
in the context of a Beacon network, to disambiguate responses coming from different Beacons. See the beacon documentation

0 commit comments

Comments
 (0)