It's important to delete spaces before asking the model, because there should be a way for the model to suggest code with less indent. Typical example of this:
int main()
{
printf("Hello world!\n");
|
Now the completion is "}", but it will not work unless there are no spaces on that line. With spaces, the model is constrained to " }".
It's important to delete spaces before asking the model, because there should be a way for the model to suggest code with less indent. Typical example of this:
Now the completion is "}", but it will not work unless there are no spaces on that line. With spaces, the model is constrained to " }".