File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,13 @@ and this project adheres to
8
8
9
9
_ (NOTE: All examples use fictitious data or freely available data sets.)_
10
10
11
+ ## [ 1.1.0] - 2025-03-20
12
+
13
+ ### Added
14
+
15
+ - Added ` get_token() ` method to ` phc.services.Agents ` API client to retrieve a
16
+ temporary token for accessing LLM functionality.
17
+
11
18
## [ 1.0.0] - 2024-12-17
12
19
13
20
### Removed
Original file line number Diff line number Diff line change 3
3
"""
4
4
5
5
from phc .services .accounts import Accounts
6
+ from phc .services .agents import Agents
6
7
from phc .services .analytics import Analytics
7
8
from phc .services .fhir import Fhir
8
9
from phc .services .projects import Projects
17
18
18
19
__all__ = [
19
20
"Accounts" ,
21
+ "Agents" ,
20
22
"Analytics" ,
21
23
"Fhir" ,
22
24
"Projects" ,
26
28
"Tools" ,
27
29
"Workflows" ,
28
30
"GenomicIngestions" ,
31
+ "IngestionStep" ,
29
32
"Tasks" ,
30
33
"PatientML" ,
31
34
]
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " phc"
3
- version = " 1.0 .0"
3
+ version = " 1.1 .0"
4
4
description = " Python SDK for the LifeOmic platform"
5
5
authors = [
" LifeOmic <[email protected] >" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments