You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/snippets/modules/model_io/models/llms/get_started.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ llm("Tell me a joke")
43
43
</CodeOutputBlock>
44
44
45
45
### `generate`: batch calls, richer outputs
46
-
`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:
46
+
`generate` lets you 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:
47
47
48
48
```python
49
49
llm_result = llm.generate(["Tell me a joke", "Tell me a poem"]*15)
0 commit comments