integrations[patch]: remove non-required chat param defaults (#26730)

anthropic:
  - max_retries

openai:
  - n
  - temperature
  - max_retries

fireworks
  - temperature

groq
  - n
  - max_retries
  - temperature

mistral
  - max_retries
  - timeout
  - max_concurrent_requests
  - temperature
  - top_p
  - safe_mode

---------

Co-authored-by: Erick Friis <erick@langchain.dev>
This commit is contained in:
Bagatur
2025-01-06 17:26:22 -05:00
committed by GitHub
parent b9db8e9921
commit 3d7ae8b5d2
15 changed files with 51 additions and 43 deletions

View File

@@ -9,7 +9,6 @@
]),
'kwargs': dict({
'endpoint': 'boo',
'max_concurrent_requests': 64,
'max_retries': 2,
'max_tokens': 100,
'mistral_api_key': dict({
@@ -22,7 +21,6 @@
'model': 'mistral-small',
'temperature': 0.0,
'timeout': 60,
'top_p': 1,
}),
'lc': 1,
'name': 'ChatMistralAI',