Files
langchain/tests/integration_tests
Wian Stipp ebc5ff2948 HuggingFaceTextGenInference bug fix: Multiple values for keyword argument (#8044)
Fixed the bug causing: `TypeError: generate() got multiple values for
keyword argument 'stop_sequences'`

```python
res = await self.async_client.generate(
                prompt,
                **self._default_params,
                stop_sequences=stop,
                **kwargs,
            )
```
The above throws an error because stop_sequences is in also in the
self._default_params.
---------

Co-authored-by: Bagatur <baskaryan@gmail.com>
2023-07-20 19:05:08 -07:00
..
2023-07-20 19:00:05 -07:00
2023-06-28 23:04:11 -07:00
2023-07-01 13:39:19 -04:00
2022-10-24 14:51:15 -07:00
2023-06-20 22:07:00 -07:00