Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/src/extension/chatSessions/copilotcli/vscode-node/tools/utils.ts
13406 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
export function makeTextResult(data: unknown): { content: [{ type: 'text'; text: string }] } {
7
return {
8
content: [
9
{
10
type: 'text',
11
text: typeof data === 'string' ? data : (JSON.stringify(data, null, 2) ?? String(data)),
12
},
13
],
14
};
15
}
16
17