Environment
- OS: Windows 10 Pro (10.0.19045.6466)
- Supercode CLI: v0.1.90
- Authentication: GitHub login succeeds
- Models tested:
- GLM 5.2
- GLM 5.1
- DeepSeek V4 Flash
- Kimi K2.6
Problem
Authentication completes successfully and I can switch between models.
However, after typing any prompt (e.g. hi), Supercode never returns a response.
The UI shows:
you > hi
Worked for 1.3s
but no assistant message is ever displayed.
Debug Logs
prisma.session.findUnique({
where: {
token: "..."
},
select: {
userId: true
}
})
prisma:driver-adapter:pg Error in performIO: {}
prisma:client:request_handler {}
The CLI appears to fail while reading the session from PostgreSQL before any request is sent to the selected model.
Expected
The assistant should respond to the prompt.
Actual
The prompt is accepted, but no response is generated and the session lookup fails.
Environment
Problem
Authentication completes successfully and I can switch between models.
However, after typing any prompt (e.g.
hi), Supercode never returns a response.The UI shows:
you > hi
Worked for 1.3s
but no assistant message is ever displayed.
Debug Logs
prisma.session.findUnique({
where: {
token: "..."
},
select: {
userId: true
}
})
prisma:driver-adapter:pg Error in performIO: {}
prisma:client:request_handler {}
The CLI appears to fail while reading the session from PostgreSQL before any request is sent to the selected model.
Expected
The assistant should respond to the prompt.
Actual
The prompt is accepted, but no response is generated and the session lookup fails.