fix type hint (#34)

This commit is contained in:
Harrison Chase
2022-10-27 18:20:16 -07:00
committed by GitHub
parent 6a3dca888b
commit 90a6e578bc
+1 -1
View File
@@ -22,7 +22,7 @@ class Cohere(BaseModel, LLM):
"""
client: Any #: :meta private:
model: str = None
model: Optional[str] = None
"""Model name to use."""
max_tokens: int = 256