FSoft-AI4Code / AgileCoder

Incorporating Agile methodology into agents to create complex real-world softwares
MIT License
372 stars 50 forks source link

Dynamic Code Graph Generator implementation #14

Closed iumyx2612 closed 2 months ago

iumyx2612 commented 2 months ago

In your paper, you propose a module called Dynamic Code Graph Generator but I can't seem to find the implementation in this repo. Can you show me?

minhngh commented 2 months ago

Hi iumyx2612,

Thank you for your concern. The implementation of this module is pretty straightforward because our proposed graph just captures use-define dependency relationships among code files. You can see the code below for graph construction, which will be called whenever the source code is updated https://github.com/FSoft-AI4Code/AgileCoder/blob/5e55c331fb074b490bd78f51e4d48f76bb78970c/agilecoder/camel/dependency.py#L21

iumyx2612 commented 2 months ago

Thank you for the fast reply!