mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-23 14:04:18 +02:00
docs: quote pip extras install examples (#4568)
* docs: quote pip extras install examples * docs: quote remaining unquoted pip install extras --------- Co-authored-by: Jeremiah Lowin <153965+jlowin@users.noreply.github.com>
This commit is contained in:
parent
c8b8911226
commit
dd803a0d7f
8 changed files with 12 additions and 12 deletions
|
|
@ -128,7 +128,7 @@ client = Client(
|
|||
```
|
||||
|
||||
<Note>
|
||||
Install the OpenAI handler with `pip install fastmcp[openai]`.
|
||||
Install the OpenAI handler with `pip install 'fastmcp[openai]'`.
|
||||
</Note>
|
||||
|
||||
### Anthropic Handler
|
||||
|
|
@ -146,7 +146,7 @@ client = Client(
|
|||
```
|
||||
|
||||
<Note>
|
||||
Install the Anthropic handler with `pip install fastmcp[anthropic]`.
|
||||
Install the Anthropic handler with `pip install 'fastmcp[anthropic]'`.
|
||||
</Note>
|
||||
|
||||
### Google Gemini Handler
|
||||
|
|
@ -164,7 +164,7 @@ client = Client(
|
|||
```
|
||||
|
||||
<Note>
|
||||
Install the Google Gemini handler with `pip install fastmcp[gemini]`.
|
||||
Install the Google Gemini handler with `pip install 'fastmcp[gemini]'`.
|
||||
</Note>
|
||||
|
||||
## Sampling Capabilities
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ Client support for sampling is optional—some clients may not implement it. To
|
|||
FastMCP provides built-in handlers for [OpenAI and Anthropic APIs](/clients/sampling#built-in-handlers). These handlers support the full sampling API including tools, automatically converting your Python functions to each provider's format.
|
||||
|
||||
<Note>
|
||||
Install handlers with `pip install fastmcp[openai]` or `pip install fastmcp[anthropic]`.
|
||||
Install handlers with `pip install 'fastmcp[openai]'` or `pip install 'fastmcp[anthropic]'`.
|
||||
</Note>
|
||||
|
||||
```python
|
||||
|
|
|
|||
|
|
@ -212,7 +212,7 @@ client = Client(
|
|||
```
|
||||
|
||||
<Note>
|
||||
Install the OpenAI handler with `pip install fastmcp[openai]`.
|
||||
Install the OpenAI handler with `pip install 'fastmcp[openai]'`.
|
||||
</Note>
|
||||
|
||||
### Anthropic Handler
|
||||
|
|
@ -246,7 +246,7 @@ client = Client(
|
|||
```
|
||||
|
||||
<Note>
|
||||
Install the Anthropic handler with `pip install fastmcp[anthropic]`.
|
||||
Install the Anthropic handler with `pip install 'fastmcp[anthropic]'`.
|
||||
</Note>
|
||||
|
||||
### Tool Execution
|
||||
|
|
|
|||
|
|
@ -446,7 +446,7 @@ Client support for sampling is optional—some clients may not implement it. To
|
|||
FastMCP provides built-in handlers for [OpenAI and Anthropic APIs](/v2/clients/sampling#built-in-handlers). These handlers support the full sampling API including tools, automatically converting your Python functions to each provider's format.
|
||||
|
||||
<Note>
|
||||
Install handlers with `pip install fastmcp[openai]` or `pip install fastmcp[anthropic]`.
|
||||
Install handlers with `pip install 'fastmcp[openai]'` or `pip install 'fastmcp[anthropic]'`.
|
||||
</Note>
|
||||
|
||||
```python
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue