Files
langchain-python/langchain
Aidan Holland 9f4b720a63 Add additional VertexAI Params (#5837)
## Changes

- Added the `stop` param to the `_VertexAICommon` class so it can be set
at llm initialization

## Example Usage

```python
VertexAI(
    # ...
    temperature=0.15,
    max_output_tokens=128,
    top_p=1,
    top_k=40,
    stop=["\n```"],
)
```

## Possible Reviewers

- @hwchase17 
- @agola11
2023-06-07 19:20:37 -07:00
..
2023-06-06 21:57:58 -07:00
2023-06-06 06:51:05 -07:00
2023-06-05 12:59:28 -07:00
2023-06-04 14:29:37 -07:00
2023-06-05 12:59:28 -07:00
2023-06-07 19:19:21 -07:00
2023-05-17 01:28:43 +00:00
2023-05-15 15:38:49 +00:00
2023-06-03 16:48:48 -07:00
2022-11-12 11:22:32 -08:00
2023-02-20 21:15:45 -08:00
2023-05-16 13:26:43 +00:00