@microsoft/agents-hosting
Version:
Microsoft 365 Agents SDK for JavaScript
30 lines (25 loc) • 469 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Citations returned by the model.
*/
export interface Citation {
/**
* The content of the citation.
*/
content: string;
/**
* The title of the citation.
*/
title: string | null;
/**
* The URL of the citation.
*/
url: string | null;
/**
* The filepath of the document.
*/
filepath: string | null;
}