mirror of
https://github.com/hwchase17/langchain.git
synced 2025-10-08 05:41:56 +00:00
Minor grammatical error (#9102)
Have corrected a grammatical error in: https://python.langchain.com/docs/modules/model_io/models/llms/ document 😄
This commit is contained in:
@@ -43,7 +43,7 @@ llm("Tell me a joke")
|
|||||||
</CodeOutputBlock>
|
</CodeOutputBlock>
|
||||||
|
|
||||||
### `generate`: batch calls, richer outputs
|
### `generate`: batch calls, richer outputs
|
||||||
`generate` lets you can call the model with a list of strings, getting back a more complete response than just the text. This complete response can includes things like multiple top responses and other LLM provider-specific information:
|
`generate` lets you can call the model with a list of strings, getting back a more complete response than just the text. This complete response can include things like multiple top responses and other LLM provider-specific information:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
llm_result = llm.generate(["Tell me a joke", "Tell me a poem"]*15)
|
llm_result = llm.generate(["Tell me a joke", "Tell me a poem"]*15)
|
||||||
|
Reference in New Issue
Block a user