Files
langchain/tests/integration_tests/llms
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
..
2022-10-24 14:51:15 -07:00
2023-06-08 23:05:57 -07:00
2023-05-24 01:25:18 -07:00
2023-06-22 08:00:15 -07:00
2022-12-13 06:46:01 -08:00
2022-11-14 08:55:59 -08:00
2022-12-13 06:46:01 -08:00
2023-06-22 01:18:14 -07:00
2023-04-06 14:41:06 -07:00
2023-05-24 15:51:12 -07:00
2022-12-18 16:22:42 -05:00