Skip to content

Commit a5c55c2

Browse files
Merge pull request #167 from aspose-words/main
Aspose.Words for Node.js via .Net 25.10.0 api reference
2 parents c80c73c + 5f9ffd8 commit a5c55c2

File tree

196 files changed

+2209
-1523
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+2209
-1523
lines changed

english/nodejs-net/Aspose.Words.AI/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This functionality extends the power of document automation, facilitating effici
2323

2424
| Class | Description |
2525
| --- | --- |
26-
| [AiModel](./aimodel/) | An abstract class representing the integration with various AI models within the Aspose.Words. |
26+
| [AiModel](./aimodel/) | Represents information about a Generative Language Model. |
2727
| [AnthropicAiModel](./anthropicaimodel/) | An abstract class representing the integration with Anthropic’s AI models within the Aspose.Words. |
2828
| [CheckGrammarOptions](./checkgrammaroptions/) | Allows to specify various options while checking grammar of a document using AI. |
2929
| [GoogleAiModel](./googleaimodel/) | An abstract class representing the integration with Google’s AI models within the Aspose.Words. |

english/nodejs-net/Aspose.Words.AI/aimodel/_index.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ title: AiModel class
33
linktitle: AiModel class
44
articleTitle: AiModel class
55
second_title: Aspose.Words for Node.js
6-
description: "Aspose.Words.AI.AiModel class. An abstract class representing the integration with various AI models within the Aspose.Words."
6+
description: "Aspose.Words.AI.AiModel class. Represents information about a Generative Language Model."
77
type: docs
88
weight: 10
99
url: /nodejs-net/aspose.words.ai/aimodel/
1010
---
1111

1212
## AiModel class
1313

14-
An abstract class representing the integration with various AI models within the Aspose.Words.
14+
Represents information about a Generative Language Model.
1515

1616

1717
### Methods
@@ -23,18 +23,18 @@ An abstract class representing the integration with various AI models within the
2323
|[ asOpenAiModel()](./asOpenAiModel/#default) | Cast AiModel to [OpenAiModel](../openaimodel/). |
2424
|[ checkGrammar(sourceDocument, options)](./checkGrammar/#document_checkgrammaroptions) | Checks grammar of the provided document. This operation leverages the connected AI model for checking grammar of document. |
2525
|[ create(modelType)](./create/#aimodeltype) | Creates a new instance of [AiModel](./) class. |
26-
|[ createClaude35Haiku()](./createClaude35Haiku/#default) | |
27-
|[ createClaude35Sonnet()](./createClaude35Sonnet/#default) | |
28-
|[ createClaude3Haiku()](./createClaude3Haiku/#default) | |
29-
|[ createClaude3Opus()](./createClaude3Opus/#default) | |
30-
|[ createClaude3Sonnet()](./createClaude3Sonnet/#default) | |
31-
|[ createGemini15Flash()](./createGemini15Flash/#default) | |
32-
|[ createGemini15Flash8B()](./createGemini15Flash8B/#default) | |
33-
|[ createGemini15Pro()](./createGemini15Pro/#default) | |
34-
|[ createGpt35Turbo()](./createGpt35Turbo/#default) | |
35-
|[ createGpt4O()](./createGpt4O/#default) | |
36-
|[ createGpt4OMini()](./createGpt4OMini/#default) | |
37-
|[ createGpt4Turbo()](./createGpt4Turbo/#default) | |
26+
|[ createClaude35Haiku()](./createClaude35Haiku/#default) | Creates a new instance of Claude 3.5 Haiku generative model type. |
27+
|[ createClaude35Sonnet()](./createClaude35Sonnet/#default) | Creates a new instance of Claude 3.5 Sonnet generative model type. |
28+
|[ createClaude3Haiku()](./createClaude3Haiku/#default) | Creates a new instance of Claude 3 Haiku generative model type. |
29+
|[ createClaude3Opus()](./createClaude3Opus/#default) | Creates a new instance of Claude 3 Opus generative model type. |
30+
|[ createClaude3Sonnet()](./createClaude3Sonnet/#default) | Creates a new instance of Claude 3 Sonnet generative model type. |
31+
|[ createGemini15Flash()](./createGemini15Flash/#default) | Creates a new instance of Gemini 1.5 Flash generative model type. |
32+
|[ createGemini15Flash8B()](./createGemini15Flash8B/#default) | Creates a new instance of Gemini 1.5 Flash-8B generative model type. |
33+
|[ createGemini15Pro()](./createGemini15Pro/#default) | Creates a new instance of Gemini 1.5 Pro generative model type. |
34+
|[ createGpt35Turbo()](./createGpt35Turbo/#default) | Creates a new instance of GPT-3.5 Turbo generative model type. |
35+
|[ createGpt4O()](./createGpt4O/#default) | Creates a new instance of GPT-4o generative model type. |
36+
|[ createGpt4OMini()](./createGpt4OMini/#default) | Creates a new instance of GPT-4 mini generative model type. |
37+
|[ createGpt4Turbo()](./createGpt4Turbo/#default) | Creates a new instance of GPT-4 Turbo generative model type. |
3838
|[ setApiKey(apiKey)](./setApiKey/#string) | Sets a specified API key to the model. |
3939
|[ summarize(sourceDocument, options)](./summarize/#document_summarizeoptions) | Generates a summary of the specified document, with options to adjust the length of the summary. This operation leverages the connected AI model for content processing. |
4040
|[ summarize(sourceDocuments, options)](./summarize/#document[]_summarizeoptions) | Generates summaries for an array of documents, with options to control the summary length and other settings. This method utilizes the connected AI model for processing each document in the array. |

english/nodejs-net/Aspose.Words.AI/aimodel/createClaude35Haiku/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createClaude35Haiku method
33
linktitle: createClaude35Haiku method
44
articleTitle: createClaude35Haiku method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createClaude35Haiku method. "
6+
description: "AiModel.createClaude35Haiku method. Creates a new instance of Claude 3.5 Haiku generative model type."
77
type: docs
88
weight: 60
99
url: /nodejs-net/aspose.words.ai/aimodel/createClaude35Haiku/
1010
---
1111

1212
## createClaude35Haiku() {#default}
1313

14+
Creates a new instance of Claude 3.5 Haiku generative model type.
15+
16+
1417
```js
1518
createClaude35Haiku()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createClaude35Sonnet/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createClaude35Sonnet method
33
linktitle: createClaude35Sonnet method
44
articleTitle: createClaude35Sonnet method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createClaude35Sonnet method. "
6+
description: "AiModel.createClaude35Sonnet method. Creates a new instance of Claude 3.5 Sonnet generative model type."
77
type: docs
88
weight: 70
99
url: /nodejs-net/aspose.words.ai/aimodel/createClaude35Sonnet/
1010
---
1111

1212
## createClaude35Sonnet() {#default}
1313

14+
Creates a new instance of Claude 3.5 Sonnet generative model type.
15+
16+
1417
```js
1518
createClaude35Sonnet()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createClaude3Haiku/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createClaude3Haiku method
33
linktitle: createClaude3Haiku method
44
articleTitle: createClaude3Haiku method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createClaude3Haiku method. "
6+
description: "AiModel.createClaude3Haiku method. Creates a new instance of Claude 3 Haiku generative model type."
77
type: docs
88
weight: 80
99
url: /nodejs-net/aspose.words.ai/aimodel/createClaude3Haiku/
1010
---
1111

1212
## createClaude3Haiku() {#default}
1313

14+
Creates a new instance of Claude 3 Haiku generative model type.
15+
16+
1417
```js
1518
createClaude3Haiku()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createClaude3Opus/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createClaude3Opus method
33
linktitle: createClaude3Opus method
44
articleTitle: createClaude3Opus method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createClaude3Opus method. "
6+
description: "AiModel.createClaude3Opus method. Creates a new instance of Claude 3 Opus generative model type."
77
type: docs
88
weight: 90
99
url: /nodejs-net/aspose.words.ai/aimodel/createClaude3Opus/
1010
---
1111

1212
## createClaude3Opus() {#default}
1313

14+
Creates a new instance of Claude 3 Opus generative model type.
15+
16+
1417
```js
1518
createClaude3Opus()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createClaude3Sonnet/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createClaude3Sonnet method
33
linktitle: createClaude3Sonnet method
44
articleTitle: createClaude3Sonnet method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createClaude3Sonnet method. "
6+
description: "AiModel.createClaude3Sonnet method. Creates a new instance of Claude 3 Sonnet generative model type."
77
type: docs
88
weight: 100
99
url: /nodejs-net/aspose.words.ai/aimodel/createClaude3Sonnet/
1010
---
1111

1212
## createClaude3Sonnet() {#default}
1313

14+
Creates a new instance of Claude 3 Sonnet generative model type.
15+
16+
1417
```js
1518
createClaude3Sonnet()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createGemini15Flash/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createGemini15Flash method
33
linktitle: createGemini15Flash method
44
articleTitle: createGemini15Flash method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createGemini15Flash method. "
6+
description: "AiModel.createGemini15Flash method. Creates a new instance of Gemini 1.5 Flash generative model type."
77
type: docs
88
weight: 110
99
url: /nodejs-net/aspose.words.ai/aimodel/createGemini15Flash/
1010
---
1111

1212
## createGemini15Flash() {#default}
1313

14+
Creates a new instance of Gemini 1.5 Flash generative model type.
15+
16+
1417
```js
1518
createGemini15Flash()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createGemini15Flash8B/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createGemini15Flash8B method
33
linktitle: createGemini15Flash8B method
44
articleTitle: createGemini15Flash8B method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createGemini15Flash8B method. "
6+
description: "AiModel.createGemini15Flash8B method. Creates a new instance of Gemini 1.5 Flash-8B generative model type."
77
type: docs
88
weight: 120
99
url: /nodejs-net/aspose.words.ai/aimodel/createGemini15Flash8B/
1010
---
1111

1212
## createGemini15Flash8B() {#default}
1313

14+
Creates a new instance of Gemini 1.5 Flash-8B generative model type.
15+
16+
1417
```js
1518
createGemini15Flash8B()
1619
```

english/nodejs-net/Aspose.Words.AI/aimodel/createGemini15Pro/_index.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ title: AiModel.createGemini15Pro method
33
linktitle: createGemini15Pro method
44
articleTitle: createGemini15Pro method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.createGemini15Pro method. "
6+
description: "AiModel.createGemini15Pro method. Creates a new instance of Gemini 1.5 Pro generative model type."
77
type: docs
88
weight: 130
99
url: /nodejs-net/aspose.words.ai/aimodel/createGemini15Pro/
1010
---
1111

1212
## createGemini15Pro() {#default}
1313

14+
Creates a new instance of Gemini 1.5 Pro generative model type.
15+
16+
1417
```js
1518
createGemini15Pro()
1619
```

0 commit comments

Comments
 (0)