Skip to content

Commit 670c356

Browse files
authored
Merge pull request #241 from lifeomic/release
release 1.1.0
2 parents d303ba0 + 4d86a63 commit 670c356

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ and this project adheres to
88

99
_(NOTE: All examples use fictitious data or freely available data sets.)_
1010

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+
1118
## [1.0.0] - 2024-12-17
1219

1320
### Removed

phc/services/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"""
44

55
from phc.services.accounts import Accounts
6+
from phc.services.agents import Agents
67
from phc.services.analytics import Analytics
78
from phc.services.fhir import Fhir
89
from phc.services.projects import Projects
@@ -17,6 +18,7 @@
1718

1819
__all__ = [
1920
"Accounts",
21+
"Agents",
2022
"Analytics",
2123
"Fhir",
2224
"Projects",
@@ -26,6 +28,7 @@
2628
"Tools",
2729
"Workflows",
2830
"GenomicIngestions",
31+
"IngestionStep",
2932
"Tasks",
3033
"PatientML",
3134
]

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "phc"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Python SDK for the LifeOmic platform"
55
authors = ["LifeOmic <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)