Merge pull request #1398 from SilverMarcs/phind_challenge_parameter

Fix Phind provider
pull/1399/head
H Lohaus 9 months ago committed by GitHub
commit 1ddd01f1ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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()

Loading…
Cancel
Save