/**
 * 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;
}
