-
Notifications
You must be signed in to change notification settings - Fork 64
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
生成文档的时候出现了递归溢出 #59
Comments
请问你是对什么仓库执行RepoAgent生成任务?有地址链接吗? |
是我自己的私有项目,暂时没有开源。重试后没有解决问题,每次都是执行到21%的时候递归溢出了 |
你可以尝试检查一下项目内是否存在循环引用:确保没有任何节点直接或间接地引用自身,这可能导致无限递归。 import sys
sys.setrecursionlimit(1500) # 将默认的递归深度限制从1000增加到1500 |
I hit the same problem at around 30%. My repo is also private so I cannot share. |
前面执行都很顺畅,但是解析到21%的时候突然就溢出了
The text was updated successfully, but these errors were encountered: