Amith M
08/08/2025, 9:34 AMMarvin
08/08/2025, 9:34 AMexplore_module_offerings
📊 Tools used:
• display_callable_signature
(32x)
• explore_module_offerings
(14x)
• get_latest_prefect_release_notes
(4x)
• research_prefect_topic
(4x)
• review_common_3x_gotchas
(4x)
• search_prefect_3x_docs
(16x)Marvin
08/08/2025, 9:35 AMMarvin
08/08/2025, 9:39 AMMarvin
08/08/2025, 9:39 AMAmith M
08/08/2025, 9:41 AMMarvin
08/08/2025, 9:41 AMexplore_module_offerings
📊 Tools used:
• explore_module_offerings
(5x)Marvin
08/08/2025, 9:41 AMMarvin
08/08/2025, 9:44 AMMarvin
08/08/2025, 9:44 AMAmith M
08/08/2025, 11:10 AMMarvin
08/08/2025, 11:10 AMMarvin
08/08/2025, 11:11 AMAmith M
08/08/2025, 11:12 AMAmith M
08/08/2025, 11:12 AMMarvin
08/08/2025, 11:12 AMMarvin
08/08/2025, 11:15 AMAmith M
08/08/2025, 11:26 AMAmith M
08/08/2025, 11:27 AMMarvin
08/08/2025, 11:27 AMMarvin
08/08/2025, 11:27 AMAmith M
08/08/2025, 11:28 AMfrom pathlib import Path
import dotenv
dotenv.load_dotenv(Path(__file__).parent.parent / ".env")
from prefect import flow
from config import Settings
settings = Settings()
if __name__ == "__main__":
flow.from_source(
source="file://./flows",
entrypoint="mscopilot_flow.py:mscopilot_flow"
).deploy(
name="mscopilot_flow",
work_pool_name="serverless-pool",
tags=settings.build_tags,
parameters={}
)
flow.from_source(
source="file://./flows",
entrypoint="analysis_report_flow.py:analysis_report_flow"
).deploy(
name="analysis_report_flow",
work_pool_name="serverless-pool",
tags=settings.build_tags,
parameters={}
)
this is my deployment code:
i get[Errno 2] No such file or directory: '/Users/amithmundur/PycharmProjects/armor-adk/app/prefect_workers/flows' in the cloud instanceAmith M
08/08/2025, 11:28 AMfrom pathlib import Path
import dotenv
dotenv.load_dotenv(Path(__file__).parent.parent / ".env")
from prefect import flow
from config import Settings
settings = Settings()
if __name__ == "__main__":
flow.from_source(
source="file://./flows",
entrypoint="mscopilot_flow.py:mscopilot_flow"
).deploy(
name="mscopilot_flow",
work_pool_name="serverless-pool",
tags=settings.build_tags,
parameters={}
)
flow.from_source(
source="file://./flows",
entrypoint="analysis_report_flow.py:analysis_report_flow"
).deploy(
name="analysis_report_flow",
work_pool_name="serverless-pool",
tags=settings.build_tags,
parameters={}
)
this is my deployment code:
i get[Errno 2] No such file or directory: '/Users/amithmundur/PycharmProjects/armor-adk/app/prefect_workers/flows' in the cloud instanceMarvin
08/08/2025, 11:28 AMMarvin
08/08/2025, 11:31 AMAmith M
08/08/2025, 11:33 AMMarvin
08/08/2025, 11:33 AMMarvin
08/08/2025, 11:34 AMAmith M
08/08/2025, 12:00 PMAmith M
08/08/2025, 12:01 PMMarvin
08/08/2025, 12:01 PMMarvin
08/08/2025, 12:01 PM