Skip to content

Commit

Permalink
Merge pull request #143 from dwmorris11/zure-exception
Browse files Browse the repository at this point in the history
fix: issue #94 added from clause to the exception statement in
  • Loading branch information
jamescalam authored Feb 11, 2024
2 parents d742154 + c944af0 commit 43f9808
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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

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
2 changes: 1 addition & 1 deletion semantic_router/llms/zure.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ def __call__(self, messages: List[Message]) -> str:
return output
except Exception as e:
logger.error(f"LLM error: {e}")
raise Exception(f"LLM error: {e}")
raise Exception(f"LLM error: {e}") from e

0 comments on commit 43f9808

Please sign in to comment.