Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
e6f6d6b
feat: bump flame-sdk version
antidodo Aug 7, 2025
2ccf992
feat: bump flame-sdk version
antidodo Aug 28, 2025
78e09fe
feat: bump flame-sdk version
antidodo Aug 28, 2025
9aa9c85
feat: bump flame-sdk version
antidodo Aug 28, 2025
f1d0ede
feat: bump flame-sdk version
antidodo Aug 28, 2025
1743b72
feat: bump flame-sdk version
antidodo Aug 29, 2025
34c613a
feat: bump flame-sdk version
antidodo Sep 18, 2025
e440841
feat: bump flame-sdk version
antidodo Sep 22, 2025
e3161f0
feat: bump flame-sdk version
antidodo Sep 22, 2025
94a84b6
feat: bump flame-sdk version
antidodo Sep 23, 2025
19d73ca
feat: bump flame-sdk version
antidodo Sep 23, 2025
998249f
feat: bump flame-sdk version
antidodo Sep 23, 2025
c9d52f6
feat: bump flame-sdk version
antidodo Sep 23, 2025
3d19717
feat: bump flame-sdk version
antidodo Sep 23, 2025
01f00d4
feat: bump flame-sdk version
antidodo Sep 24, 2025
87d0f44
feat: bump flame-sdk version
antidodo Sep 24, 2025
32d1d1c
feat: bump flame-sdk version
antidodo Sep 25, 2025
fc4fbf4
feat: bump flame-sdk version
antidodo Sep 29, 2025
4b3f86d
feat: bump flame-sdk version
antidodo Sep 29, 2025
bc75289
feat: bump flame-sdk version
antidodo Oct 17, 2025
1e0cd40
feat: bump flame-sdk version
antidodo Oct 17, 2025
9e7905e
feat: bump flame-sdk version
antidodo Oct 17, 2025
0a66d16
feat: bump flame-sdk version
Nightknight3000 Oct 30, 2025
38880d6
feat: bump flame-sdk version
Nightknight3000 Oct 31, 2025
95e78e5
test: empty commit
Nightknight3000 Nov 3, 2025
a6babd9
feat: bump flame-sdk version
Nightknight3000 Nov 6, 2025
1650326
feat: bump flame-sdk version
Nightknight3000 Nov 6, 2025
a71cde6
feat: bump flame-sdk version
Nightknight3000 Nov 6, 2025
57799d7
feat: bump flame-sdk version
Nightknight3000 Nov 6, 2025
c07cd24
refactor: fix typos in comments
Nightknight3000 Nov 19, 2025
48cf411
Update README with project title and description
antidodo Nov 24, 2025
84942ec
feat: bump to request_timeout branch
antidodo Jan 19, 2026
827f567
feat: bump to request_timeout branch
antidodo Jan 19, 2026
be1697f
Merge branch 'main' into canary
Nightknight3000 Jan 19, 2026
188d9d2
fix: merge from main
Nightknight3000 Jan 19, 2026
fa2fb8b
feat: bump to canary branch
antidodo Jan 21, 2026
69819cf
feat: bump to canary branch
antidodo Jan 21, 2026
f8fa6fc
feat: bump to canary branch
antidodo Jan 21, 2026
141d3cd
feat: update node_finished method to log completion status
antidodo Jan 21, 2026
54945b3
feat: modify node_finished method and add infinite loop for orderly s…
antidodo Jan 21, 2026
ba41a88
feat: remove unused variable in star_model.py to streamline data anal…
antidodo Jan 21, 2026
e3a4dfc
feat: bump version to 0.4.1
antidodo Jan 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion flame/star/star_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ def __init__(self,
raise BrokenPipeError("Has to be either analyzer or aggregator")
if not self.test_mode:
self.flame.flame_log("Analysis finished!", log_type='info')
while True:
pass # keep the node alive to allow for orderly shutdown

def _is_aggregator(self) -> bool:
return self.flame.get_role() == 'aggregator'
Expand Down Expand Up @@ -136,7 +138,6 @@ def _start_analyzer(self,
self._get_data(query=query, data_type=data_type)
self.flame.flame_log(f"\tData extracted: {str(self.data)[:100]}", log_type='info')

agg_res = None
# Check converged status on Hub
while not analyzer.finished: # (**)
# Analyze data
Expand Down
40 changes: 20 additions & 20 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flame"
version = "0.4.0"
version = "0.4.1"
description = ""
authors = ["Alexander Röhl <alexander.roehl@uni-tuebingen.de>", "David Hieber <david.hieber@uni-tuebingen.de>"]
readme = "README.md"
Expand All @@ -9,7 +9,7 @@ packages = [{ include = "flame" }]

[tool.poetry.dependencies]
python = "^3.9"
flamesdk = {git = "https://github.com/PrivateAIM/python-sdk.git", tag = "0.3.1"}
flamesdk = {git = "https://github.com/PrivateAIM/python-sdk.git", tag = "0.3.1" }

[tool.poetry.group.dev.dependencies]
pytest = ">=8.3.0"
Expand Down