We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ebdbb commit 4ea260dCopy full SHA for 4ea260d
agentstack/__init__.py
@@ -6,11 +6,13 @@
6
"""
7
from pathlib import Path
8
from agentstack import conf
9
+from agentstack.utils import get_framework
10
from agentstack.inputs import get_inputs
11
12
___all___ = [
13
"conf",
14
"get_tags",
15
+ "get_framework",
16
"get_inputs",
17
]
18
@@ -19,5 +21,5 @@ def get_tags() -> list[str]:
19
21
20
22
Get a list of tags relevant to the user's project.
23
- return ['agentstack', conf.get_framework(), *conf.get_installed_tools()]
24
+ return ['agentstack', get_framework(), *conf.get_installed_tools()]
25
0 commit comments