We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3462cb2 commit c66c3f8Copy full SHA for c66c3f8
src/vs/workbench/contrib/chat/common/chatModel.ts
@@ -1169,7 +1169,7 @@ export class ChatModel extends Disposable implements IChatModel {
1169
const message = typeof firstRequestMessage === 'string' ?
1170
firstRequestMessage :
1171
firstRequestMessage.text;
1172
- return message.split('\n')[0].substring(0, 50);
+ return message.split('\n')[0].substring(0, 200);
1173
}
1174
1175
private readonly _onDidDispose = this._register(new Emitter<void>());
0 commit comments