Skip to content

Commit 21e5b7b

Browse files
committed
updates
1 parent 7750786 commit 21e5b7b

File tree

3 files changed

+108
-10
lines changed

3 files changed

+108
-10
lines changed

amadeusgpt/main.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ def step(self, user_query):
8585
result = self.sandbox.llm_step(user_query)
8686
return result
8787

88+
def get_analysis(self):
89+
sandbox = self.sandbox
90+
analysis = sandbox.exec_namespace['behavior_analysis']
91+
return analysis
92+
8893

8994
if __name__ == "__main__":
9095
from amadeusgpt.config import Config

notebook/EPM_demo.ipynb

Lines changed: 101 additions & 9 deletions
Large diffs are not rendered by default.

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ install_requires =
3131
moviepy # 0.02
3232
umap-learn
3333
cachetools # 0.03
34-
matplotlib<3.9 # for cmap to work
34+
matplotlib<3.9 # for cmap to work
35+
ipympl
3536

3637
[options.extras_require]
3738
dev =

0 commit comments

Comments
 (0)