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 c5f43d8 commit 7705c2aCopy full SHA for 7705c2a
veadk/cli/main.py
@@ -24,7 +24,6 @@
24
import typer
25
import uvicorn
26
27
-from veadk.cli.studio.fast_api import get_fast_api_app
28
from veadk.utils.logger import get_logger
29
from veadk.version import VERSION
30
@@ -153,6 +152,8 @@ def web(
153
152
def studio(
154
path: str = typer.Option(".", "--path", help="Project path"),
155
):
+ from veadk.cli.studio.fast_api import get_fast_api_app
156
+
157
path = Path(path).resolve()
158
159
agent_py_path = os.path.join(path, "agent.py")
0 commit comments