bland-garden-80695
07/24/2025, 11:45 PMvictorious-lawyer-58417
07/25/2025, 5:49 AMbland-garden-80695
07/25/2025, 10:58 PMcuddly-rocket-69327
07/31/2025, 4:27 AMvictorious-lawyer-58417
07/31/2025, 3:26 PMbland-garden-80695
07/31/2025, 11:31 PMself.next()
is used to create flow and jump from a function to other. In the PR core/tests folder
@steps(index, ['some-function'], required=true)
is used to create flows and
self.next()
is missing. Can you explain whats the difference between the two? I couldn't find a document on the later.victorious-lawyer-58417
07/31/2025, 11:40 PMself.next({'a': self.hello, 'b': self.end}, condition='my_artifact')
in this case, execution will proceed to a step hello if my_artifact == 'a' or if my_artifact == 'b', it'll go to endbland-garden-80695
07/31/2025, 11:43 PMbland-garden-80695
08/01/2025, 9:39 PMbland-garden-80695
08/06/2025, 11:37 PMfrom metaflow import FlowSpec
it pointed to the path to python package, rather than the local version. This was my first time working on a local clone of a python package. I had to uninstall and re-install the editable version. It might be good to add this to the contribution guideline for first timers like me.
3. I believe the example I created to test AI agent with condition, can be added to tutorial folder, showcasing metaflow's use-case for AI Agent workflow. I am using local ollama 3.2 for testing, so no API key required. It mitigates the risk of keys being leaked.victorious-lawyer-58417
08/10/2025, 8:21 PMPYTHONPATH at the version I want to use. No need to pip install -e . or use virtual environment event.
Either approach should workvictorious-lawyer-58417
08/10/2025, 8:24 PMbland-garden-80695
08/12/2025, 12:33 AM