From fc95e2ec585171ef860908f4a2bf484d5c886d1b Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 15 Aug 2024 14:03:31 -0300 Subject: [PATCH] feat: add condition to create cycle edge (#3341) * feat: Implement edge type based on cycles in the graph. * refactor: Change next_runnable_vertices to a set to avoid duplicates. * feat: Add property for cycles in Graph class. * feat(graph): Add is_cyclic property to Graph class. * refactor: Update test_memory_chatbot.py with new assertions and modifications. * refactor: Update set_output_value to set_on_output in starter projects test vector store rag. * feat: Add test for cyclic behavior in graph with max iterations. * merge main