From 2eb8b82e4660613065ea256a8444e216158c1ad8 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Tue, 18 Mar 2025 23:40:04 +0000 Subject: [PATCH] Fix typo --- .../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):