Replies: 4 comments
-
🤖 Hello, The To resolve this issue, you might need to adjust the recursion limit in Python using Here is a similar issue that was resolved: [Bug]: For a more accurate solution, could you please provide more details about the transformation rules and the structure of your dataset? This will help in understanding the exact cause of the issue. Best, Sources
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Beta Was this translation helpful? Give feedback.
-
@dosu-bot each document is 50000 - 100000 characters long in the knowledge graph. Is this causing recursion error? |
Beta Was this translation helpful? Give feedback.
-
🤖 Hello, Yes, the length of your documents could indeed be causing the Even though you've tried adjusting the recursion limit in Python using One solution could be to refactor the Another solution could be to simplify the structure of your documents. For example, you could try flattening the hierarchical relationships in your documents, or breaking your documents up into smaller, less complex pieces. Finally, you could try reducing the You can refer to the following sources for more information:
As for the default recursion limit set in Python, it's typically 1000, but it can vary depending on the platform and Python implementation. However, I wasn't able to find specific information on how this affects the functioning of the LlamaIndex framework in the repository. I hope this helps! Let me know if you have any other questions. Sources
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Beta Was this translation helpful? Give feedback.
-
Hey @bengm, it'd be super helpful to post a stack trace to help us debug. |
Beta Was this translation helpful? Give feedback.
-
Question Validation
Question
Following the tutorial for Single Query Transformation, I got the error
RecursionError: maximum recursion depth exceeded while calling a Python object
I am following the notebook closely. My dataset is different. I am using excel data that is converted to text format. The text length is between 50000 to 100000 characters. Could this be an issue? How can I solve this?
Beta Was this translation helpful? Give feedback.
All reactions