From 5a45b838b5dbbc5ab8af777e2b372ac80e26de6d Mon Sep 17 00:00:00 2001 From: Vishnu Satis Date: Tue, 26 Aug 2025 21:05:39 +0530 Subject: [PATCH] OpenAI Vllm temperature param fix (#124) --- flo_ai/flo_ai/llm/openai_vllm.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flo_ai/flo_ai/llm/openai_vllm.py b/flo_ai/flo_ai/llm/openai_vllm.py index d0f46b5f..47a87d0a 100644 --- a/flo_ai/flo_ai/llm/openai_vllm.py +++ b/flo_ai/flo_ai/llm/openai_vllm.py @@ -52,6 +52,7 @@ async def generate( vllm_openai_kwargs = { 'model': self.model, 'messages': messages, + 'temperature': self.temperature, **kwargs, **self.kwargs, }