You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importphind# set cf_clearance cookie (needed again)phind.cf_clearance='xx.xx-1682166681-0-160'phind.user_agent='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36'# same as the one from browser you got cf_clearance fromprompt='who won the quatar world cup'# help needed: not getting newlines from the stream, please submit a PR if you know how to fix this# stream completionforresultinphind.StreamingCompletion.create(
model='gpt-4',
prompt=prompt,
results=phind.Search.create(prompt, actualSearch=True), # create search (set actualSearch to False to disable internet)creative=False,
detailed=False,
codeContext=''): # up to 3000 chars of codeprint(result.completion.choices[0].text, end='', flush=True)
# normal completionresult=phind.Completion.create(
model='gpt-4',
prompt=prompt,
results=phind.Search.create(prompt, actualSearch=True), # create search (set actualSearch to False to disable internet)creative=False,
detailed=False,
codeContext='') # up to 3000 chars of codeprint(result.completion.choices[0].text)