Skip to content

Commit 19bb9bd

Browse files
committed
fix to run test.sh properly
1 parent d3e9007 commit 19bb9bd

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LANGSMITH_API_KEY="lsv2_xxx"
1616
AZURE_OPENAI_ENDPOINT="https://xxx.openai.azure.com/"
1717
AZURE_OPENAI_API_KEY="xxx"
1818
AZURE_OPENAI_API_VERSION="2025-04-01-preview"
19-
AZURE_OPENAI_MODEL_CHAT="gpt-5-chat"
19+
AZURE_OPENAI_MODEL_CHAT="gpt-5"
2020
AZURE_OPENAI_MODEL_EMBEDDING="text-embedding-3-small"
2121
AZURE_OPENAI_MODEL_REASONING="o4-mini"
2222

template_langgraph/llms/azure_openais.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ def __init__(self, settings: Settings = None):
3434
api_key=settings.azure_openai_api_key,
3535
api_version=settings.azure_openai_api_version,
3636
azure_deployment=settings.azure_openai_model_chat,
37-
temperature=0.0,
3837
streaming=True,
3938
)
4039
self.embedding_model = AzureOpenAIEmbeddings(

template_langgraph/llms/ollamas.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,5 @@ def __init__(self, settings: Settings = None):
2626

2727
self.chat_model = ChatOllama(
2828
model=settings.ollama_model_chat,
29-
temperature=0.0,
3029
streaming=True,
3130
)

0 commit comments

Comments
 (0)