You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gt4 and gemini-pro models stopped working.gpt 4 error (Liaobots: ModelNotSupportedError: Model is not supported: gpt-4 in: Liaobots
Bing: RateLimitError: CaptchaChallenge: Use other cookies or/and ip address)
Gemini-pro (Retry Provider failed:
You: ResponseStatusError: Response 401: DFP telemetry ID not set)
How can I fix them? Do I need to constantly change my ip to another one?
Here is a part of my code for getting an answer. I put the models I need in the array and they try to get an answer from each one in turn. Maybe I did something wrong and it is necessary to additionally set some parameters for each model?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
gt4 and gemini-pro models stopped working.gpt 4 error (Liaobots: ModelNotSupportedError: Model is not supported: gpt-4 in: Liaobots
Bing: RateLimitError: CaptchaChallenge: Use other cookies or/and ip address)
Gemini-pro (Retry Provider failed:
You: ResponseStatusError: Response 401: DFP telemetry ID not set)
How can I fix them? Do I need to constantly change my ip to another one?
Here is a part of my code for getting an answer. I put the models I need in the array and they try to get an answer from each one in turn. Maybe I did something wrong and it is necessary to additionally set some parameters for each model?
models = ["gpt-4-turbo", "gpt-4", "claude-3-opus", "gpt-3.5-turbo", "gemini-pro"]
models = models * 2
for attempt in range(1, 11): # Повторяем запрос 10 раз
client = Client()
loop = asyncio.get_event_loop()
try:
Beta Was this translation helpful? Give feedback.
All reactions