mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-31 20:19:43 +00:00
community[patch]: allows using text-generation-inference
/generate route with HuggingFaceEndpoint
(#20100)
- **Description:** allows to use the /generate route of `text-generation-inference` with the `HuggingFaceEndpoint`
This commit is contained in:
parent
ea43c669f2
commit
d7e12750df
@ -258,7 +258,10 @@ class HuggingFaceEndpoint(LLM):
|
||||
stream=False,
|
||||
task=self.task,
|
||||
)
|
||||
response_text = json.loads(response.decode())[0]["generated_text"]
|
||||
try:
|
||||
response_text = json.loads(response.decode())[0]["generated_text"]
|
||||
except KeyError:
|
||||
response_text = json.loads(response.decode())["generated_text"]
|
||||
|
||||
# Maybe the generation has stopped at one of the stop sequences:
|
||||
# then we remove this stop sequence from the end of the generated text
|
||||
@ -289,7 +292,10 @@ class HuggingFaceEndpoint(LLM):
|
||||
stream=False,
|
||||
task=self.task,
|
||||
)
|
||||
response_text = json.loads(response.decode())[0]["generated_text"]
|
||||
try:
|
||||
response_text = json.loads(response.decode())[0]["generated_text"]
|
||||
except KeyError:
|
||||
response_text = json.loads(response.decode())["generated_text"]
|
||||
|
||||
# Maybe the generation has stopped at one of the stop sequences:
|
||||
# then remove this stop sequence from the end of the generated text
|
||||
|
Loading…
Reference in New Issue
Block a user