Trending
Heavy Instagram use may blur your sense of self, study suggests is trending now Africa: 11 African Countries Record 1,153 Mpox Cases in Six Weeks is trending now Call for Entries: AMBSO Impact Research Initiative is trending now New breeding approach targets crop rotations, not yield alone is trending now Bacterial enzyme found to weaken gut protective hormone signal is trending now Wildfires near the South Pole burned 90 million years ago is trending now Russia launching 3 tons of cargo to the space station today: Watch it live is trending now Mikel Arteta urged Arsenal to remain 'cautious' over teenage sensation Max Dowman despite… is trending now Manchester derby VAR error: Howard Webb really disappointed with missed offside is trending now Roberto De Zerbi slams 'unfair' result as Tottenham crash out of Carabao Cup against Live… is trending now The last tango! Lionel Messi makes sensational return to Argentina squad for emotional fa… is trending now Poco Lee Alleged Assault Case: UK Court Takes Major Decision as Dancer’s Legal Battle Tak… is trending now Heavy Instagram use may blur your sense of self, study suggests is trending now Africa: 11 African Countries Record 1,153 Mpox Cases in Six Weeks is trending now Call for Entries: AMBSO Impact Research Initiative is trending now New breeding approach targets crop rotations, not yield alone is trending now Bacterial enzyme found to weaken gut protective hormone signal is trending now Wildfires near the South Pole burned 90 million years ago is trending now Russia launching 3 tons of cargo to the space station today: Watch it live is trending now Mikel Arteta urged Arsenal to remain 'cautious' over teenage sensation Max Dowman despite… is trending now Manchester derby VAR error: Howard Webb really disappointed with missed offside is trending now Roberto De Zerbi slams 'unfair' result as Tottenham crash out of Carabao Cup against Live… is trending now The last tango! Lionel Messi makes sensational return to Argentina squad for emotional fa… is trending now Poco Lee Alleged Assault Case: UK Court Takes Major Decision as Dancer’s Legal Battle Tak… 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