Unverified Commit d6547707 authored by takatost's avatar takatost Committed by GitHub

feat: supports for new version of openllm (#1554)

parent 19fc9e34
......@@ -51,7 +51,8 @@ class OpenLLM(LLM):
) -> str:
params = {
"prompt": prompt,
"llm_config": self.llm_kwargs
"llm_config": self.llm_kwargs,
"stop": stop,
}
headers = {"Content-Type": "application/json"}
......@@ -65,11 +66,11 @@ class OpenLLM(LLM):
raise ValueError(f"OpenLLM HTTP {response.status_code} error: {response.text}")
json_response = response.json()
completion = json_response["responses"][0]
completion = json_response["outputs"][0]['text']
completion = completion.lstrip(prompt)
if stop is not None:
completion = enforce_stop_tokens(completion, stop)
# if stop is not None:
# completion = enforce_stop_tokens(completion, stop)
return completion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment