dashi6174 commited on
Commit
2721f55
·
1 Parent(s): 99ebece

fixed: The choices may be empty. (#876)

Browse files

### What problem does this PR solve?


### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

Files changed (1) hide show
  1. rag/llm/chat_model.py +1 -0
rag/llm/chat_model.py CHANGED
@@ -56,6 +56,7 @@ class Base(ABC):
56
  stream=True,
57
  **gen_conf)
58
  for resp in response:
 
59
  if not resp.choices[0].delta.content:continue
60
  ans += resp.choices[0].delta.content
61
  total_tokens += 1
 
56
  stream=True,
57
  **gen_conf)
58
  for resp in response:
59
+ if len(resp.choices) == 0:continue
60
  if not resp.choices[0].delta.content:continue
61
  ans += resp.choices[0].delta.content
62
  total_tokens += 1