mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-28 09:28:48 +00:00
-1 max token description for openai (#330)
This commit is contained in:
parent
2fbb152386
commit
137356dbec
@ -29,7 +29,9 @@ class OpenAI(LLM, BaseModel):
|
|||||||
temperature: float = 0.7
|
temperature: float = 0.7
|
||||||
"""What sampling temperature to use."""
|
"""What sampling temperature to use."""
|
||||||
max_tokens: int = 256
|
max_tokens: int = 256
|
||||||
"""The maximum number of tokens to generate in the completion."""
|
"""The maximum number of tokens to generate in the completion.
|
||||||
|
-1 returns as many tokens as possible given the prompt and
|
||||||
|
the models maximal context size."""
|
||||||
top_p: float = 1
|
top_p: float = 1
|
||||||
"""Total probability mass of tokens to consider at each step."""
|
"""Total probability mass of tokens to consider at each step."""
|
||||||
frequency_penalty: float = 0
|
frequency_penalty: float = 0
|
||||||
|
Loading…
Reference in New Issue
Block a user