Trending
‘Nigeria records 12,000 cervical cancer cases, 8,000 deaths annually’ is trending now That painkiller you take often, the water you drink and 5 other everyday habits that may … is trending now WHO urges Africa to expand access to hepatitis care is trending now FG Unveils Three Strategies To Boost Brain Health Across Nigeria is trending now Stone Tools from Armenian Cave Reveal Split Strategy for Survival 50,000 Years Ago is trending now NASA sets coverage for astronaut Chris Williams, crewmates return is trending now Marine animals first colonized empty seashells about 470 million years ago is trending now The heart has a ‘little brain’ — and it protects against stress is trending now Man City agree double contract extension with stars after wrapping up Phil Foden deal is trending now Van Bommel Agrees Deal To Become Belgium Head Coach is trending now Casemiro signs for Leo Messi's Inter Miami is trending now Arokodare disrupts Wolves training to ‘force Fiorentina transfer’ is trending now ‘Nigeria records 12,000 cervical cancer cases, 8,000 deaths annually’ is trending now That painkiller you take often, the water you drink and 5 other everyday habits that may … is trending now WHO urges Africa to expand access to hepatitis care is trending now FG Unveils Three Strategies To Boost Brain Health Across Nigeria is trending now Stone Tools from Armenian Cave Reveal Split Strategy for Survival 50,000 Years Ago is trending now NASA sets coverage for astronaut Chris Williams, crewmates return is trending now Marine animals first colonized empty seashells about 470 million years ago is trending now The heart has a ‘little brain’ — and it protects against stress is trending now Man City agree double contract extension with stars after wrapping up Phil Foden deal is trending now Van Bommel Agrees Deal To Become Belgium Head Coach is trending now Casemiro signs for Leo Messi's Inter Miami is trending now Arokodare disrupts Wolves training to ‘force Fiorentina transfer’ is trending now
Technology

OpenWebUI error "startwith"

OpenWebUI error "startwith"

Se você está recebendo a mensagem de erro abaixo ao chamar a API /api/chat/completions do OpenWebUI em sua versão v0.9.5 saiba que é possível resolver alterando uma linha de código enquanto que a solução não é distribuída.["error": {      "message": "Bad request - please check your parameters",      "timestamp": 1778603658835,      "name": "NodeApiError",      "description": "'NoneType' object has no attribute 'startswith'",      "context": {}    }]Caso esteja utilizando Docker, primeiro identifique o ID do contêiner que está executando o OpenWebUi com o comando: [sudo docker ps -a]Em seguida copie o arquivo main.py para sua máquina (substitua ID pelo id do conteiner):[sudo docker cp ID:/app/backend/open_webui/socket/main.py ./main.py]Edite o arquivo e procure pela linha:[if request_info.get('chat_id', '').startswith('channel:'):]Altere essa linha para:[if (request_info.get('chat_id') or '').startswith('channel:'):]Pronto, agora copie o arquivo de volta para o container (substitua ID pelo id do conteiner):[sudo docker cp ./main.py ID:/app/backend/open_webui/socket/main.py]E então reinicie o conteiner (substitua ID pelo id do conteiner):[sudo docker restart ID]Após realizar este procedimento, faça uma nova chamada de API e verá seu funcionamento normal.Fonte: https://github.com/open-webui/open-webui/issues/24553#issuecomment-4416523151

View original source →

Related

More from Limon Tec