Skip to content
Snippets Groups Projects
Unverified Commit 43f9808a authored by James Briggs's avatar James Briggs Committed by GitHub
Browse files

Merge pull request #143 from dwmorris11/zure-exception

fix: issue #94 added from clause to the exception statement in
parents d7421545 c944af0a
No related branches found
No related tags found
No related merge requests found
...@@ -143,4 +143,6 @@ azhar, [Beyond Basic Chatbots: How Semantic Router is Changing the Game](https:/ ...@@ -143,4 +143,6 @@ azhar, [Beyond Basic Chatbots: How Semantic Router is Changing the Game](https:/
Daniel Avila, [Semantic Router: Enhancing Control in LLM Conversations](https://blog.codegpt.co/semantic-router-enhancing-control-in-llm-conversations-68ce905c8d33), CodeGPT @ Medium Daniel Avila, [Semantic Router: Enhancing Control in LLM Conversations](https://blog.codegpt.co/semantic-router-enhancing-control-in-llm-conversations-68ce905c8d33), CodeGPT @ Medium
Yogendra Sisodia, [Stop Chat-GPT From Going Rogue In Production With Semantic Router](https://medium.com/@scholarly360/stop-chat-gpt-from-going-rogue-in-production-with-semantic-router-937a4768ae19), Medium Yogendra Sisodia, [Stop Chat-GPT From Going Rogue In Production With Semantic Router](https://medium.com/@scholarly360/stop-chat-gpt-from-going-rogue-in-production-with-semantic-router-937a4768ae19), Medium
\ No newline at end of file
Aniket Hingane, [LLM Apps: Why you Must Know Semantic Router in 2024: Part 1](https://medium.com/@learn-simplified/llm-apps-why-you-must-know-semantic-router-in-2024-part-1-bfbda81374c5), Medium
\ No newline at end of file
...@@ -58,4 +58,4 @@ class AzureOpenAILLM(BaseLLM): ...@@ -58,4 +58,4 @@ class AzureOpenAILLM(BaseLLM):
return output return output
except Exception as e: except Exception as e:
logger.error(f"LLM error: {e}") logger.error(f"LLM error: {e}")
raise Exception(f"LLM error: {e}") raise Exception(f"LLM error: {e}") from e
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment