-
Notifications
You must be signed in to change notification settings - Fork 642
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
JSONDecodeError #25
Comments
I'm also getting the JSONDecodeError multiple times when I try to run this. Would love some insight into this issue. |
Seems to happen when you change the names of the variables. I'm getting the same error as well. When I use the default config, it ran fine. |
I've encountered the same error. Tried increasing |
Darn, I wish the above worked with keeping the variable names the same but I'm still getting an error if I just change any part of the text. I'm wondering what about the query causes it to fail, maybe if the description doesn't match the variable name? |
when I try to run the notebook I keep getting this error:
"JSONDecodeError Traceback (most recent call last)
Cell In[10], line 1
----> 1 generate_optimal_prompt(description, input_variables, NUMBER_OF_TEST_CASES, NUMBER_OF_PROMPTS, use_wandb)
Cell In[7], line 182
179 if wandb.run is None:
180 start_wandb_run()
--> 182 test_cases = generate_test_cases(description, input_variables, num_test_cases)
183 prompts = generate_candidate_prompts(description, input_variables, test_cases, number_of_prompts)
184 print('Here are the possible prompts:', prompts)
Cell In[7], line 231
227 message = response.json()
229 response_text = message['content'][0]['text']
--> 231 test_cases = json.loads(response_text)
233 print('Here are the test cases:', test_cases)
235 return test_cases
File c:\Users\ABDUL RAHMAN\AppData\Local\Programs\Python\Python311\Lib\json_init_.py:346, in loads(s, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
341 s = s.decode(detect_encoding(s), 'surrogatepass')
343 if (cls is None and object_hook is None and
344 parse_int is None and parse_float is None and
345 parse_constant is None and object_pairs_hook is None and not kw):
--> 346 return _default_decoder.decode(s)
...
--> 353 obj, end = self.scan_once(s, idx)
354 except StopIteration as err:
355 raise JSONDecodeError("Expecting value", s, err.value) from None
JSONDecodeError: Unterminated string starting at: line 165 column 29 (char 5609)"
when the only thing I changed is the description and adding my API key thats it
The text was updated successfully, but these errors were encountered: