mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-03 03:40:12 +00:00
Merge pull request #1398 from SilverMarcs/phind_challenge_parameter
Fix Phind provider
This commit is contained in:
commit
1ddd01f1ad
@ -56,14 +56,15 @@ class Phind(AsyncGeneratorProvider):
|
||||
"customLinks": []
|
||||
},
|
||||
"context": "",
|
||||
"rewrittenQuestion": prompt
|
||||
"rewrittenQuestion": prompt,
|
||||
"challenge": 0.21132115912208504
|
||||
}
|
||||
async with session.post(f"{cls.url}/api/infer/followup/answer", headers=headers, json=data) as response:
|
||||
new_line = False
|
||||
async for line in response.iter_lines():
|
||||
if line.startswith(b"data: "):
|
||||
chunk = line[6:]
|
||||
if chunk.startswith(b"<PHIND_METADATA>"):
|
||||
if chunk.startswith(b"<PHIND_METADATA>") or chunk.startswith(b"<PHIND_INDICATOR>"):
|
||||
pass
|
||||
elif chunk:
|
||||
yield chunk.decode()
|
||||
@ -71,4 +72,4 @@ class Phind(AsyncGeneratorProvider):
|
||||
yield "\n"
|
||||
new_line = False
|
||||
else:
|
||||
new_line = True
|
||||
new_line = True
|
||||
|
Loading…
Reference in New Issue
Block a user