Skip to content

Commit c5d1a4d

Browse files
committed
Review changes.
1 parent 5c52452 commit c5d1a4d

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

libraries/radpdfprocessing/features/accessibility-support/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ position: 0
1313
|Version|**Q3 2025** (or newer)|
1414
|----|----|
1515

16-
**RadPdfProcessing** provides *accessibility support* of documents to users with disabilities. This allows many users with visual impairments use screen readers to read such documents aloud. To enable proper vocalization, either through a screen reader or by some more direct invocation of a text-to-speech engine, the PDF document should support the following features:
16+
**RadPdfProcessing** provides *accessibility support* of documents to users with disabilities. This allows many users with visual impairments to use screen readers and read such documents aloud. To enable proper vocalization, either through a screen reader or by some more direct invocation of a text-to-speech engine, the PDF document should support the following features:
1717

18-
* Specifying the natural language used for text in a PDF document
18+
* Specifying the natural language used for text in a PDF document.
1919

2020
* Providing textual descriptions for images or other items that do not translate naturally into text, or replacement text for content that does translate into text but is represented in a nonstandard way.
2121

22-
* Specifying the expansion of abbreviations or acronyms
22+
* Specifying the expansion of abbreviations or acronyms.
2323

2424
The core of this support lies in the ability to determine the logical order of content in a PDF document, independently of the content's appearance or layout, through [logical structure]({%slug radpdfprocessing-model-structure-tree%}) and [Tagged PDF]({%slug radpdfprocessing-model-tagged-pdf%}).
2525

libraries/radpdfprocessing/features/gen-ai-powered-document-insights/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Getting Started
33
description: Learn how to use the GenAI-powered Document Insights functionality to summarize a PDF document with PdfProcessing.
4-
page_title: Overview
4+
page_title: Getting Started
55
slug: radpdfprocessing-features-gen-ai-powered-document-insights-getting-started
66
tags: ai, document, analysis, overview, pdf, processing, genai, powered, insights
77
published: True
@@ -14,7 +14,7 @@ The following example demonstrates how to use the GenAI-powered Document Insight
1414

1515
>note The following code snippet is valid for Azure Open AI 9.3. The specific **IChatClient** initialization may be different according to the specific version.
1616
17-
>important For .NET {{site.mindotnetversion}}+ (Target OS Windows) with [Packages for .NET Framework and .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows), an [IEmbeddingsStorage]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}#implementing-custom-iembeddingsstorage) implementation is required for the [PartialContextQuestionProcessor]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}).
17+
>important For .NET {{site.mindotnetversion}}+ (Target OS Windows) with [Packages for .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows), an [IEmbeddingsStorage]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}#implementing-custom-iembeddingsstorage) implementation is required for the [PartialContextQuestionProcessor]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}).
1818
1919
#### __[C#] Example 1: Using GenAI-powered Document Insights__
2020

libraries/radpdfprocessing/features/gen-ai-powered-document-insights/partial-context-question-processor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The **PartialContextQuestionProcessor** is ideal for the following scenarios:
3939
|**PartialContextQuestionProcessor(IChatClient chatClient, int modelMaxInputTokenLimit, ISimpleTextDocument document)**|_Specific*_ |Creates an instance with built-in embeddings storage|
4040
|**PartialContextQuestionProcessor(IChatClient chatClient, IEmbeddingsStorage embeddingsStorage, int modelMaxInputTokenLimit, ISimpleTextDocument document)**|Any|Creates an instance with custom embeddings storage|
4141

42-
> _*Specific_ The .NET {{site.mindotnetversion}}+ (Target OS Windows) + [Packages for .NET Framework and .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows) constructor uses **DefaultEmbeddingsStorage** internally, while the cross-platform constructor requires a custom implementation of **IEmbeddingsStorage** as shown in the [Custom IEmbeddingsStorage Setup]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}#implementing-custom-iembeddingsstorage) section.
42+
> _*Specific_ The .NET {{site.mindotnetversion}}+ (Target OS Windows) + [Packages for .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows) constructor uses **DefaultEmbeddingsStorage** internally, while the cross-platform constructor requires a custom implementation of **IEmbeddingsStorage** as shown in the [Custom IEmbeddingsStorage Setup]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}#implementing-custom-iembeddingsstorage) section.
4343
4444
### Properties and Methods
4545

@@ -64,7 +64,7 @@ The settings class provides configuration options for the question-answering pro
6464

6565
#### Example 1: Using PartialContextQuestionProcessor with default embeddings storage.
6666

67-
This example demonstrates how to use the **PartialContextQuestionProcessor** with the built-in embeddings storage on .NET {{site.mindotnetversion}}+ (Target OS Windows) + [Packages for .NET Framework and .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows). For setting up the AI client, see the [AI Provider Setup]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-prerequisites%}#ai-provider-setup) section:
67+
This example demonstrates how to use the **PartialContextQuestionProcessor** with the built-in embeddings storage on .NET {{site.mindotnetversion}}+ (Target OS Windows) + [Packages for .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows). For setting up the AI client, see the [AI Provider Setup]({%slug radpdfprocessing-features-gen-ai-powered-document-insights-prerequisites%}#ai-provider-setup) section:
6868

6969
<snippet id='libraries-pdf-features-gen-ai-ask-questions-using-partial-context'/>
7070

libraries/radpdfprocessing/model/radfixeddocumentinfo.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: RadFixedDocumentInfo
33
description: RadFixedDocument is the main document unit of the PdfProcessing library offered by Telerik Document Processing libraries.
4-
page_title: RadFixedDocument
4+
page_title: RadFixedDocumentInfo
55
slug: radpdfprocessing-model-radfixeddocumentinfo
6-
tags: radfixeddocument, pdf, merge, create, document, page, fixed, info, dictionary
6+
tags: radfixeddocument, pdf, merge, create, document, page, fixed, info, dictionary, title, author, description, creator, producer, date, creation
77
published: True
88
position: 1
99
---

libraries/radpdfprocessing/model/structure-tree.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The class represents a structure element in the document. The available public p
3535

3636
A set of standard structure types define the meaning of structure elements, such as paragraphs, headings, articles, and tables. The available options are:
3737

38-
|StructureTagType|Description|
38+
|Structure Tag Type|Description|
3939
|----|----|
4040
|**None**|No specific structure tag type.|
4141
|**Document**|A complete document. This is the root element of any structure tree containing multiple parts or multiple articles.|

libraries/radwordsprocessing/editing/gen-ai-powered-document-insights/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Getting Started
33
description: Learn how to use the GenAI-powered Document Insights functionality to summarize a Word document with WordsProcessing.
4-
page_title: Overview
4+
page_title: Getting Started
55
slug: radwordsprocessing-features-gen-ai-powered-document-insights-getting-started
66
tags: ai, document, analysis, overview, word, flow, processing, genai, powered, insights
77
published: True
@@ -14,7 +14,7 @@ The following example demonstrates how to use the GenAI-powered Document Insight
1414

1515
>note The following code snippet is valid for Azure Open AI 9.3. The specific **IChatClient** initialization may be different according to the specific version.
1616
17-
>important For .NET {{site.mindotnetversion}}+ (Target OS Windows) with [Packages for .NET Framework and .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows), an [IEmbeddingsStorage]({%slug radwordsprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}#implementing-custom-iembeddingsstorage) implementation is required for the [PartialContextQuestionProcessor]({%slug radwordsprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}).
17+
>important For .NET {{site.mindotnetversion}}+ (Target OS Windows) with [Packages for .NET {{site.mindotnetversion}} and .NET {{site.maxdotnetversion}} for Windows]({%slug available-nuget-packages%}#packages-for-net-framework-and-net-{{site.mindotnetversion}}-and-net-{{site.maxdotnetversion}}-for-windows), an [IEmbeddingsStorage]({%slug radwordsprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}#implementing-custom-iembeddingsstorage) implementation is required for the [PartialContextQuestionProcessor]({%slug radwordsprocessing-features-gen-ai-powered-document-insights-partial-context-question-processor%}).
1818
1919
#### __[C#] Example 1: Using GenAI-powered Document Insights__
2020

0 commit comments

Comments
 (0)