mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-23 19:39:58 +00:00
community[patch]: fix errors introduced by pydantic 2.10 (#28297)
This commit is contained in:
@@ -61,7 +61,7 @@ class GooseAI(LLM):
|
||||
model_kwargs: Dict[str, Any] = Field(default_factory=dict)
|
||||
"""Holds any model parameters valid for `create` call not explicitly specified."""
|
||||
|
||||
logit_bias: Optional[Dict[str, float]] = Field(default_factory=dict)
|
||||
logit_bias: Optional[Dict[str, float]] = Field(default_factory=dict) # type: ignore[arg-type]
|
||||
"""Adjust the probability of specific tokens being generated."""
|
||||
|
||||
gooseai_api_key: Optional[SecretStr] = None
|
||||
|
Reference in New Issue
Block a user