Fix missing Azure api version in Langfuse create_async_task test

This commit is contained in:
Hannes Burrichter 2024-06-16 16:09:35 +02:00
parent 1b644fa0fc
commit 27df662164

View file

@ -177,6 +177,7 @@ def create_async_task(**completion_kwargs):
"""
completion_args = {
"model": "azure/chatgpt-v-2",
"api_version": "2024-02-01",
"messages": [{"role": "user", "content": "This is a test"}],
"max_tokens": 5,
"temperature": 0.7,