fountain-life-service-clients 3.41.0__py3-none-any.whl → 3.43.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,6 +11,7 @@ from fountain_life_service_clients._base_client import (
11
11
 
12
12
  class InvokeBasicAgentRequest(TypedDict):
13
13
  input: str
14
+ model_id: NotRequired[str]
14
15
 
15
16
 
16
17
  class InvokeBasicAgentResponse(TypedDict):
@@ -0,0 +1,30 @@
1
+ # This file was generated automatically. Do not edit it directly.
2
+ from typing import TypedDict, Unpack, cast
3
+ from urllib.parse import quote
4
+
5
+ from fountain_life_service_clients._base_client import (
6
+ AlphaConfig,
7
+ AlphaResponse,
8
+ BaseClient,
9
+ )
10
+
11
+
12
+ class GetBroadInfoByGenomicsFileIdResponse(TypedDict):
13
+ orderId: str
14
+ sampleId: str
15
+
16
+
17
+ class GenomicIngestionServiceClient(BaseClient):
18
+ def __init__(self, **cfg: Unpack[AlphaConfig]):
19
+ kwargs = {
20
+ "target": "lambda://genomic-ingestion-service:deployed",
21
+ **(cfg or {}),
22
+ }
23
+ super().__init__(**kwargs)
24
+
25
+ async def get_broad_info_by_genomics_file_id(self, file_id: str):
26
+ """Provide any genomics file id related to a patients broad genomic ingestion and get info to the originating Broad order"""
27
+ res = await self.client.request(
28
+ path=f"/v1/genomic-ingestion/broad/order/{quote(file_id)}", method="GET"
29
+ )
30
+ return cast(AlphaResponse[GetBroadInfoByGenomicsFileIdResponse], res)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fountain-life-service-clients
3
- Version: 3.41.0
3
+ Version: 3.43.0
4
4
  Summary:
5
5
  License: UNLICENSED
6
6
  Author: Fountain Life
@@ -2,7 +2,7 @@ fountain_life_service_clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
2
2
  fountain_life_service_clients/_base_client.py,sha256=19AeJmz3H0d4tRdJ-fBcIXhw78hPniyGDfclfr4LC9g,781
3
3
  fountain_life_service_clients/account_service.py,sha256=LI1w20YRz19JpC-8CEdoCpix4zKWSVl6iJ15k0Xc5Vo,3665
4
4
  fountain_life_service_clients/account_service_policy_attributes.py,sha256=yq8JyDtFVhP5QzYvnAyIZGBhRK9Ds8SrMcG6EazPjxs,1523
5
- fountain_life_service_clients/agents_api_service.py,sha256=_yRyuyzK0TmHIjJG-541AAzlrDeEmpCsItt-XnCTLA4,6940
5
+ fountain_life_service_clients/agents_api_service.py,sha256=m8kpl94JP4JUycBTTJr62xm4QflDH0stLpWGQ-jQvl4,6971
6
6
  fountain_life_service_clients/ai_template_service.py,sha256=-yIi1B6C7klUu-r2OxuSamVVi8L_-YQ6M_FAaemfmmM,10667
7
7
  fountain_life_service_clients/claimed_domains_service.py,sha256=qW-7jCdDcB7qz6u5sv9_TESwYPbjWYwSGNnqfcrvyeM,1659
8
8
  fountain_life_service_clients/cohorts_service.py,sha256=B0atrAnVGFG2TWMMORyNlJK0ffKUfI084mISFXZjAtI,4633
@@ -14,6 +14,7 @@ fountain_life_service_clients/fhir_post_processor_service.py,sha256=4IsyyRoCIzSN
14
14
  fountain_life_service_clients/fhir_search_service.py,sha256=O_y8YrOjvKj_Tfs5Pj4MM4X6RvV1E2s762lRH5U8ji8,6014
15
15
  fountain_life_service_clients/file_service.py,sha256=CY36fpvCAi17npAKAWkFDDaNhwbvTC5hx-sGZmPfyBM,4046
16
16
  fountain_life_service_clients/ga4gh_service.py,sha256=SSFdYM_oW2ZATUOaZT_xjp3jlEJt7rR_ai2US6HolgI,989
17
+ fountain_life_service_clients/genomic_ingestion_service.py,sha256=rQ9lv2ezCjMxgc8P4jYl3xNeSV6DwZOQOLg_Fe2u9PE,1025
17
18
  fountain_life_service_clients/genomics_report_service.py,sha256=d2w16pZ3ZaakX0pYkidWT7buY-RB_GRzLf0R6lbIvw0,993
18
19
  fountain_life_service_clients/genomics_service.py,sha256=p6fvhf6i3FJVXnLDAFNJgS2IVTYjbkSNX-osy-rRYjo,5305
19
20
  fountain_life_service_clients/invitation_service.py,sha256=tKWgb-bGIwT4x3MWSLiVChQRaZURj43S6Uyrg3Lt7HA,2596
@@ -27,6 +28,6 @@ fountain_life_service_clients/rules_service.py,sha256=VxPYboYQmw--6Kn78RKu6_9as1
27
28
  fountain_life_service_clients/scheduler_service.py,sha256=IkwRns_QHh6fx1IZWEXZ35DeRiW7OHaROM5wjWubZm4,4440
28
29
  fountain_life_service_clients/survey_service.py,sha256=RPpPBhXqmvYZ-T4n1BFX9TUSAfnnjfVcUo3k76a91PQ,14206
29
30
  fountain_life_service_clients/user_service.py,sha256=rM9xcF-VzdLp9aDOhg1UbecX2VPPMxH9PlgpNpGdC18,4253
30
- fountain_life_service_clients-3.41.0.dist-info/METADATA,sha256=71ITUL8x29LjkaesiEEJJ5fNW-x5Zd67Zetej8l7tCA,1405
31
- fountain_life_service_clients-3.41.0.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
32
- fountain_life_service_clients-3.41.0.dist-info/RECORD,,
31
+ fountain_life_service_clients-3.43.0.dist-info/METADATA,sha256=hwbuMr3Ipzg_sk0Dnz0dR2naudMq-_euxh1zd3IbKQ0,1405
32
+ fountain_life_service_clients-3.43.0.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
33
+ fountain_life_service_clients-3.43.0.dist-info/RECORD,,