mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-24 06:24:18 +02:00
[Doc]: fixing spelling issues in multiple files
This commit is contained in:
parent
fde9068efb
commit
96280b3d2c
9 changed files with 11 additions and 11 deletions
|
|
@ -39,7 +39,7 @@ class LoggingAnthropicHandler(AnthropicSamplingHandler):
|
|||
class SentimentAnalysis(BaseModel):
|
||||
sentiment: str # "positive", "negative", or "neutral"
|
||||
confidence: float # 0.0 to 1.0
|
||||
keywords: list[str] # Key words that influenced the analysis
|
||||
keywords: list[str] # Keywords that influenced the analysis
|
||||
explanation: str # Brief explanation of the analysis
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ def get_current_time() -> str:
|
|||
|
||||
|
||||
def roll_dice(sides: int = 6) -> str:
|
||||
"""Roll a dice with the specified number of sides."""
|
||||
"""Roll a die with the specified number of sides."""
|
||||
result = random.randint(1, sides)
|
||||
console.print(f" [bold magenta]TOOL[/] roll_dice({sides}) = {result}")
|
||||
return str(result)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue