Since version v0.2.5, it seems the stop parameter in openai api is directly set conv.stop_str, rather than from request.
https://github.com/lm-sys/FastChat/blob/v0.2.5/fastchat/serve/api.py#L134
In version v0.2.3, it works when set in the request.
https://github.com/lm-sys/FastChat/blob/v0.2.3/fastchat/serve/api.py#L125
The stop parameter is a key when it works with ReAct in langchain, seems quite important to enable.
Since version v0.2.5, it seems the stop parameter in openai api is directly set
conv.stop_str, rather than from request.https://github.com/lm-sys/FastChat/blob/v0.2.5/fastchat/serve/api.py#L134
In version v0.2.3, it works when set in the request.
https://github.com/lm-sys/FastChat/blob/v0.2.3/fastchat/serve/api.py#L125
The stop parameter is a key when it works with ReAct in langchain, seems quite important to enable.