From 1495666e6505fb4b1fed9004f07a9b4afc969086 Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Tue, 18 Mar 2025 23:40:31 +0000 Subject: [PATCH] Fix typo (#321) --- .../trustgraph/model/text_completion/azure_openai/llm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustgraph-flow/trustgraph/model/text_completion/azure_openai/llm.py b/trustgraph-flow/trustgraph/model/text_completion/azure_openai/llm.py index 01eb2c9b..bce44ab6 100755 --- a/trustgraph-flow/trustgraph/model/text_completion/azure_openai/llm.py +++ b/trustgraph-flow/trustgraph/model/text_completion/azure_openai/llm.py @@ -26,7 +26,7 @@ default_max_output = 4192 default_api = "2024-12-01-preview" default_endpoint = os.getenv("AZURE_ENDPOINT", None) default_token = os.getenv("AZURE_TOKEN", None) -default_modeel = os.getenv("AZURE_MODEL", None) +default_model = os.getenv("AZURE_MODEL", None) class Processor(ConsumerProducer):