Skip to content

Commit

Permalink
doc typo (#1652)
Browse files Browse the repository at this point in the history
Maybe there is a missing f here
  • Loading branch information
YangZhaoo authored Oct 20, 2024
1 parent ef83201 commit 24ab964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/building-blocks/1-language_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ For any LM, you can configure any of the following attributes at initialization
gpt_4o_mini = dspy.LM('openai/gpt-4o-mini', temperature=0.9, max_tokens=3000, stop=None, cache=False)
```

By default LMs in DSPy are cached. If you repeat the same call, you will get the same outputs. But you can turn of caching by setting `cache=False` while declaring `dspy.LM` object.
By default LMs in DSPy are cached. If you repeat the same call, you will get the same outputs. But you can turn off caching by setting `cache=False` while declaring `dspy.LM` object.

### Using locally hosted LMs

Expand Down

0 comments on commit 24ab964

Please sign in to comment.