acheong08 / Bard

Python SDK/API for reverse engineered Google Bard
MIT License
1.42k stars 178 forks source link

SNlM0e value not found in response #29

Closed zicas2000 closed 1 year ago

zicas2000 commented 1 year ago

I have tried to interpret core python code to C# with the help of Chatgpt as I'm just a newbie in this field , It generated the full code to be applicable for integration with Unity. but I have got the error "SNlM0e value not found in response". I don't know what is the issue, it might be related to my location ?

j22-robertson commented 1 year ago

Also having a similar issue in TypeScript, I have even output the result to a log file and am still unable to find SNlM0e to match with after doing crtl+f to manually search. const snim0eMatch = resp.data.match(/SNlM0e:(.*?)/);

zicas2000 commented 1 year ago

Now I can get that SNlM0e value but eventually I got 404 bad request, l'm still trying to debug.

alienatorZ commented 1 year ago

In python I am having trouble with line 100:SNlM0e = re.search(r"SNlM0e\":\"(.*?)\"", resp.text).group(1)

I think maybe the SNlM0e isn't there anymore?