[Doc]: fixing spelling issues in multiple files

This commit is contained in:
Didier Durand 2026-01-23 07:17:38 +01:00
commit 96280b3d2c
No known key found for this signature in database
GPG key ID: 2E380B94E290D440
9 changed files with 11 additions and 11 deletions

View file

@ -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

View file

@ -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)