-
Notifications
You must be signed in to change notification settings - Fork 768
Cloud/deployable temporal example #395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
db01b79
5f8eb89
97c9bf4
dae5e11
6641a3a
33d9ae9
b9f1165
742e26c
ad28b59
2a8755d
9573453
4de01d4
22d1a5d
c643529
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,6 @@ | ||||||||||||||||||||||||||
from basic import SimpleWorkflow # noqa: F401 | ||||||||||||||||||||||||||
from evaluator_optimizer import EvaluatorOptimizerWorkflow # noqa: F401 | ||||||||||||||||||||||||||
from orchestrator import OrchestratorWorkflow # noqa: F401 | ||||||||||||||||||||||||||
from parallel import ParallelWorkflow # noqa: F401 | ||||||||||||||||||||||||||
from router import RouterWorkflow # noqa: F401 | ||||||||||||||||||||||||||
from interactive import WorkflowWithInteraction # noqa: F401 | ||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Switch to relative imports for package safety Bare imports break when not running from the module directory. Use explicit relative imports. -from basic import SimpleWorkflow # noqa: F401
-from evaluator_optimizer import EvaluatorOptimizerWorkflow # noqa: F401
-from orchestrator import OrchestratorWorkflow # noqa: F401
-from parallel import ParallelWorkflow # noqa: F401
-from router import RouterWorkflow # noqa: F401
-from interactive import WorkflowWithInteraction # noqa: F401
+from .basic import SimpleWorkflow # noqa: F401
+from .evaluator_optimizer import EvaluatorOptimizerWorkflow # noqa: F401
+from .orchestrator import OrchestratorWorkflow # noqa: F401
+from .parallel import ParallelWorkflow # noqa: F401
+from .router import RouterWorkflow # noqa: F401
+from .interactive import WorkflowWithInteraction # noqa: F401 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
Uh oh!
There was an error while loading. Please reload this page.