mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-16 09:48:04 +00:00
Update types in cohere.py (#1635)
Adjust argument type and clarification on parameter limits for attributes `frequency_penalty` and `presence_penalty`.
This commit is contained in:
parent
aed9f9febe
commit
039d05c808
@ -41,11 +41,11 @@ class Cohere(LLM, BaseModel):
|
||||
p: int = 1
|
||||
"""Total probability mass of tokens to consider at each step."""
|
||||
|
||||
frequency_penalty: int = 0
|
||||
"""Penalizes repeated tokens according to frequency."""
|
||||
frequency_penalty: float = 0.0
|
||||
"""Penalizes repeated tokens according to frequency. Between 0 and 1."""
|
||||
|
||||
presence_penalty: int = 0
|
||||
"""Penalizes repeated tokens."""
|
||||
presence_penalty: float = 0.0
|
||||
"""Penalizes repeated tokens. Between 0 and 1."""
|
||||
|
||||
truncate: Optional[str] = None
|
||||
"""Specify how the client handles inputs longer than the maximum token
|
||||
|
Loading…
Reference in New Issue
Block a user