mirror of
https://github.com/vxcontrol/pentagi.git
synced 2026-07-20 12:37:04 -04:00
[GH-ISSUE #173] Problem: Conversation disconnection with the Baichuan Model. #69
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zh0604 on GitHub (Mar 3, 2026).
Original GitHub issue: https://github.com/vxcontrol/pentagi/issues/173
@asdek commented on GitHub (Mar 4, 2026):
hey @zh0604
according to the screenshot you increased your quotes on the LLM provider but I think it's not a main reason, try to check your provider by console:
docker exec -it pentagi ./bin/ctester -agents all -verbose -groups all --workers 1@zh0604 commented on GitHub (Mar 5, 2026):
@asdek commented on GitHub (Mar 19, 2026):
hey @zh0604
looking at your screenshots, i can see several configuration issues:
main problem: you're using
OPEN_AI_KEYandOPEN_AI_SERVER_URLfor Baichuan model, but these variables are only for the original OpenAI provider. for any other backend (like Baichuan), you must useLLM_SERVER_*variables instead.rate limit errors (429): the errors in your second screenshot show "Request too frequent, please try again later" - this is OpenAI's rate limit, not a network issue. this confirms you're hitting OpenAI's API quota limits for your tier level.
configuration steps:
clear OpenAI variables if you want to use Baichuan as primary provider:
configure custom LLM provider for Baichuan:
configure embedding provider (required, you can keep OpenAI for embeddings with tier 1):
see the embedding configuration guide for details.
about tier limits: according to your screenshots, the 429 errors indicate you exceeded your OpenAI rate limits. the product will work with tier 1, but very slowly due to rate limiting. we recommend:
all provider configurations are tested in the latest build, so i'm closing this issue for now. if you have updates or can't configure it correctly after following these steps, feel free to reopen with new information!