-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Empty JSON Output for prompt using LLM #893
Comments
Hello @SumanthMeenan! I'm here to help you with any bugs, questions, or contributions you may have. Let's work together to solve this issue. The error "not enough values to unpack (expected 2, got 0)" typically occurs when the code is trying to unpack a sequence (like a tuple or list) into variables, but the sequence doesn't contain enough elements. In the context of Scrapegraph-ai, this might happen during the parsing stage if the expected data structure isn't being returned from the Fetch Node. Here are a few steps you can take to troubleshoot and resolve this issue:
If these steps don't resolve the issue, you might need to inspect the specific implementation details of the Fetch and Parse nodes to ensure they align with the webpage's content structure. To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
can you fetch by yourself the code? |
This issue often happens, I would say 50% of the time. I'm using A simple condition would exclude the doc. Or, implement a retry mechanism for empty |
This happens often and random for me as well. This should be a recoverable error. |
which model are you using? |
Here's the output of the error: I'm on GPT 4o-mini with duckduckgo and scrape_do (but i've also seen it on local chrome)
|
I am using SearchGraph and coming across the same error when using 'gpt-4o-mini'. I do not get the error when using 'gpt-4o', however, gpt-4o is far too expensive for most people. |
…raise `ValueError: not enough values to unpack (expected 2, got 0)` ([ScrapeGraphAI/Scrapegraph-ai#893](ScrapeGraphAI/Scrapegraph-ai#893))
Hey everyone, sincerest apologies about this, I've just fixed this in v3.0.4 of semchunk (please run The problem was that I was filtering out empty chunks including chunks consisting entirely of whitespace and then trying to unpack those filtered chunks which doesn't work if there's nothing to unpack. PS If you ever do get any other issues with |
I had the same error as mentioned. After the upgrade, the error does not appear anymore, but instead the returned content is hallucinated and has nothing to do with the web page I am trying to scrape. |
This sounds like a Searchgraph bug. Presumably if no input is being provided to semchunk then you’re going to get no output and if you get no output then I guess it makes sense the model might start to hallucinate. |
@umarbutler what do you suggests as solution? |
To be honest, I'm not familiar with scrape graph myself, so I can't help out here. This is a better question for the devs. @DPende @LorenzoPaleari |
I want to extract all providers listed in this url https://www.aetna.com/dsepublic/#/contentPage?page=providerResults¶meters=searchText%3D'Primary%20Care%20Physician%20(PCP)';isGuidedSearch%3Dtrue&site_id=asa&language=en
I can use selenium, Bsoup etc., but came across this tool
I'm getting empty array as output
Found providers ['openai', 'azure_openai'] for model gpt-3.5-turbo-0125, using openai.
If it was not intended please specify the model provider in the graph configuration
--- Executing Fetch Node ---
--- (Fetching HTML from: https://www.aetna.com/dsepublic/#/contentPage?page=providerResults¶meters=searchText%3D'Primary%20Care%20Physician%20(PCP)';isGuidedSearch%3Dtrue&site_id=asa&language=en) ---
--- Executing ParseNode Node ---
Error occurred: not enough values to unpack (expected 2, got 0)
The text was updated successfully, but these errors were encountered: