First character of AI chats often missing now

Since I upgraded to 0.44.4, I am seeing missing leading letters of some of the lines of suggested code. For example:

from datetime import datetime
rom typing import List
rom pydantic import BaseModel
rom fastapi import HTTPException
class StudyResponse(BaseModel):
study_id: int
study_title: str | None

@app.get(“/studies/”, response_model=List[StudyResponse])
ef read_studies(skip: int = 0, limit: int = 100, db: Session = Depends(get_db)):
studies = db.query(database_models.Study).offset(skip).limit(limit).all()

Anybody else seeing this?

1 Like

Same here

Hey, this issue has been fixed. You can download the latest version here:

Still having the same issue.

Version: 0.44.8
VSCode Version: 1.93.1
Commit: f3b5a63019e4e2283033b4db987a35f8413c7570
Date: 2024-12-22T05:48:08.427Z
Electron: 30.5.1
Chromium: 124.0.6367.243
Node.js: 20.16.0
V8: 12.4.254.20-electron.0
OS: Windows_NT x64 10.0.19045

Could you confirm if this is happening in a new chat?

It happens when using selection, ctrl + L to start a new chat.

After reinstalling the IDE no longer missing character.