Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Fix Exception#21

Merged
sonichi merged 7 commits intomainfromfixexception
Sep 13, 2024
Merged

Fix Exception#21

sonichi merged 7 commits intomainfromfixexception
Sep 13, 2024

Conversation

yiranwu0
Copy link
Collaborator

@yiranwu0yiranwu0 commentedSep 2, 2024
edited
Loading

Why are these changes needed?

Fix exceptions of non-OpenAI generations:

  1. Remove meaningless exceptions that just catches the error and throw it. This also adds confusion to debugging when an error happens.
  2. Remove retries: Some retries are also useless. If we catch any errors and throw it, the retry is not needed. If no error is caught, we don't need retry.

Fix Gemini retry:

  1. Remove retry in GeminiClient. It should be inOpenAIWrapper.
  2. OpenAIWrapper only catches OpenAI rate limits. This PR adds catches of google's rate limits so that different keys can be tried.

Future todo:

  1. Add exception catches of non-openai models toOpenAIWrapper. Currently only gemini is added.
  2. (Optional Feature): Add a wait time option forOpenAIWrapper to wait out the rate limits.

Related issue number

Checks

@Hk669
Copy link
Collaborator

thanks@yiranwu0 for the changes. can you confirm if the updated code is working as expected with all the clients. have you tested it? if not@marklysze and i can give it a try.

cc@marklysze

@marklysze
Copy link
Collaborator

LGTM.@marklysze could you take a look too?

Yep, I'll have a look and test now.

@marklysze
Copy link
Collaborator

marklysze commentedSep 5, 2024
edited
Loading

Thanks for raising this PR@yiranwu0, better bubbling of exceptions and centralised retries is definitely needed with all the client classes in place.

From what I understand from the code changes, the client-specific exceptions are added to client.py and then handled in thetry/except around theclient.create(params). Then it's logged and raised if it's the last client.

I was testing with Bedrock and checked out the exceptions that could be raised, and there's quite a lot of possible exceptions (boto and aws exceptions and clickClick to see a full list of static exceptions). So, I was wondering whether, rather than trying to add each client's full list of exceptions intoclient.py and catch them, would it be possible to create either a generic ClientException class or an exception class in each client class (e.g. BedrockClientException, GeminiClientException) and then raise that, if we want to handle client-specific exceptions. Other options are to create our own set of exceptions for specific common scenarios, like ClientRateLimitException, and then we raise those specific ones from the client class and any others can be generic, like ClientException.

Amazon Bedrock is probably going to be the one with the most exceptions, though Anthropic with Bedrock may also have a few. Additionally, some exceptions may have the same name, so if we continue with the proposed approach then perhaps we should prefix them, e.g.InternalServerError becomesGeminiInternalServerError.

Let me know what you think...

@yiranwu0
Copy link
CollaboratorAuthor

Hello@marklysze, thank you for testing it!
I don't think we need to attend to all exceptions from different clients, we only want to catch the few "time rate limits" exception and handle that inclient.py because we can try different configs. For other exceptions, I think we should raise the original exception, so that user can debug from that, or search online.

However, I think it is good if we can have all the rate limit exceptions wrapped in an exception of our own, so that we only need to catch one exception. But that needs more thinking and could be done in the next PR.

@marklysze
Copy link
Collaborator

Thanks@yiranwu0, sounds like a plan! I'll look at the rest of the client classes and test :)

…here stop error, removed try/except for Ollama
@marklysze
Copy link
Collaborator

Hey@yiranwu0, I've updated the code as follows:

  • Removed try/except from Ollama client
  • Added main exceptions for non-OpenAI clients into client.py
  • Prefixed exceptions with the client name, e.g. gemini_InternalServerError and anthorpic_InternalServerError, to avoid conflicts
  • Changed variables for exceptions in ImportError to be of typeException instead ofNone asNone can't be used in an except clause. Also moved the except clause to the end of the three exception blocks.
  • Tested non-function and function workflows with the following (to ensure they are still working): Anthorpic, Cohere, Groq, Mistral, Ollama, Together.AI. (I haven't tested Gemini).
  • Added a note for users to also installfix-busted-json if trying to use the Ollama client.

It caught exceptions when they arose. Though I can't test all exceptions.

@yiranwu0
Copy link
CollaboratorAuthor

Hello@marklysze, your change looks good! I already tested Gemini. If there are good, we can merge it!

@marklysze
Copy link
Collaborator

Hello@marklysze, your change looks good! I already tested Gemini. If there are good, we can merge it!

Okay, great... I'm good with it!

Copy link
Collaborator

@Hk669Hk669 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others.Learn more.

looks good to me. Thanks@yiranwu0 and@marklysze

marklysze reacted with thumbs up emoji
@sonichisonichi merged commit6712b64 intomainSep 13, 2024
146 of 153 checks passed
@sonichisonichi deleted the fixexception branchSeptember 13, 2024 00:13
odoochain pushed a commit to odoochain/autogen that referenced this pull requestNov 10, 2024
Added FAQ.md as placeholder
odoochain pushed a commit to odoochain/autogen that referenced this pull requestNov 10, 2024
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@sonichisonichisonichi approved these changes

@marklyszemarklyszemarklysze approved these changes

@Hk669Hk669Hk669 approved these changes

@BeibinLiBeibinLiAwaiting requested review from BeibinLi

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

5 participants
@yiranwu0@Hk669@marklysze@sonichi@qingyun-wu

[8]ページ先頭

©2009-2025 Movatter.jp