Skip to content

Commit 1436803

Browse files
Merge pull request #171 from aspose-words/aw_for_node_js_release_25.11.0
Aspose.Words for Node.js via .Net 25.11.0 api reference
2 parents d6a8ead + e5333da commit 1436803

File tree

156 files changed

+1368
-1212
lines changed

Some content is hidden

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

156 files changed

+1368
-1212
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,18 @@ url: /nodejs-net/aspose.words.ai/aimodel/
1414
Represents information about a Generative Language Model.
1515

1616

17+
### Properties
18+
19+
| Name | Description |
20+
| --- | --- |
21+
| [timeout](./timeout/) | Gets or sets the number of milliseconds to wait before the request to AI model times out. The default value is 100,000 milliseconds (100 seconds). |
22+
| [url](./url/) | Gets or sets a URL of the model. The default value is specific for the model. |
23+
1724
### Methods
1825

1926
| Name | Description |
2027
| --- | --- |
21-
|[ asAnthropicAiModel()](./asAnthropicAiModel/#default) | Cast AiModel to [AnthropicAiModel](../anthropicaimodel/). |
22-
|[ asGoogleAiModel()](./asGoogleAiModel/#default) | Cast AiModel to [GoogleAiModel](../googleaimodel/). |
23-
|[ asOpenAiModel()](./asOpenAiModel/#default) | Cast AiModel to [OpenAiModel](../openaimodel/). |
28+
|[ asAnthropicAiModel()](./asAnthropicAiModel/#default) | |
2429
|[ checkGrammar(sourceDocument, options)](./checkGrammar/#document_checkgrammaroptions) | Checks grammar of the provided document. This operation leverages the connected AI model for checking grammar of document. |
2530
|[ create(modelType)](./create/#aimodeltype) | Creates a new instance of [AiModel](./) class. |
2631
|[ createClaude35Haiku()](./createClaude35Haiku/#default) | Creates a new instance of Claude 3.5 Haiku generative model type. |

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

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,14 @@ title: AiModel.asAnthropicAiModel method
33
linktitle: asAnthropicAiModel method
44
articleTitle: asAnthropicAiModel method
55
second_title: Aspose.Words for Node.js
6-
description: "AiModel.asAnthropicAiModel method. Cast AiModel to [AnthropicAiModel](../../anthropicaimodel/)."
6+
description: "AiModel.asAnthropicAiModel method. "
77
type: docs
8-
weight: 10
8+
weight: 30
99
url: /nodejs-net/aspose.words.ai/aimodel/asAnthropicAiModel/
1010
---
1111

1212
## asAnthropicAiModel() {#default}
1313

14-
Cast AiModel to [AnthropicAiModel](../../anthropicaimodel/).
15-
16-
17-
1814
```js
1915
asAnthropicAiModel()
2016
```

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

Lines changed: 0 additions & 26 deletions
This file was deleted.

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

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: AiModel.timeout property
3+
linktitle: timeout property
4+
articleTitle: timeout property
5+
second_title: Aspose.Words for Node.js
6+
description: "AiModel.timeout property. Gets or sets the number of milliseconds to wait before the request to AI model times out"
7+
type: docs
8+
weight: 10
9+
url: /nodejs-net/aspose.words.ai/aimodel/timeout/
10+
---
11+
12+
## AiModel.timeout property
13+
14+
Gets or sets the number of milliseconds to wait before the request to AI model times out.
15+
The default value is 100,000 milliseconds (100 seconds).
16+
17+
18+
```js
19+
get timeout(): number
20+
```
21+
22+
### See Also
23+
24+
* module [Aspose.Words.AI](../../)
25+
* class [AiModel](../)
26+
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: AiModel.url property
3+
linktitle: url property
4+
articleTitle: url property
5+
second_title: Aspose.Words for Node.js
6+
description: "AiModel.url property. Gets or sets a URL of the model"
7+
type: docs
8+
weight: 20
9+
url: /nodejs-net/aspose.words.ai/aimodel/url/
10+
---
11+
12+
## AiModel.url property
13+
14+
Gets or sets a URL of the model.
15+
The default value is specific for the model.
16+
17+
18+
```js
19+
get url(): string
20+
```
21+
22+
### See Also
23+
24+
* module [Aspose.Words.AI](../../)
25+
* class [AiModel](../)
26+

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,18 @@ An abstract class representing the integration with Anthropic’s AI models with
1616

1717
**Inheritance:** [AnthropicAiModel](./)[AiModel](../aimodel/)
1818

19+
### Properties
20+
21+
| Name | Description |
22+
| --- | --- |
23+
| [timeout](../aimodel/timeout/) | Gets or sets the number of milliseconds to wait before the request to AI model times out. The default value is 100,000 milliseconds (100 seconds).<br>(Inherited from [AiModel](../aimodel/)) |
24+
| [url](./url/) | Gets or sets a URL of the model. The default value is "https://api.anthropic.com/". |
25+
1926
### Methods
2027

2128
| Name | Description |
2229
| --- | --- |
23-
|[ asAnthropicAiModel()](../aimodel/asAnthropicAiModel/#default) | Cast AiModel to [AnthropicAiModel](./).<br>(Inherited from [AiModel](../aimodel/)) |
24-
|[ asGoogleAiModel()](../aimodel/asGoogleAiModel/#default) | Cast AiModel to [GoogleAiModel](../googleaimodel/).<br>(Inherited from [AiModel](../aimodel/)) |
25-
|[ asOpenAiModel()](../aimodel/asOpenAiModel/#default) | Cast AiModel to [OpenAiModel](../openaimodel/).<br>(Inherited from [AiModel](../aimodel/)) |
30+
|[ asAnthropicAiModel()](../aimodel/asAnthropicAiModel/#default) | <br>(Inherited from [AiModel](../aimodel/)) |
2631
|[ checkGrammar(sourceDocument, options)](../aimodel/checkGrammar/#document_checkgrammaroptions) | Checks grammar of the provided document. This operation leverages the connected AI model for checking grammar of document.<br>(Inherited from [AiModel](../aimodel/)) |
2732
|[ create(modelType)](../aimodel/create/#aimodeltype) | Creates a new instance of [AiModel](../aimodel/) class.<br>(Inherited from [AiModel](../aimodel/)) |
2833
|[ createClaude35Haiku()](../aimodel/createClaude35Haiku/#default) | Creates a new instance of Claude 3.5 Haiku generative model type.<br>(Inherited from [AiModel](../aimodel/)) |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ articleTitle: summarize method
55
second_title: Aspose.Words for Node.js
66
description: "Aspose.Words.AI.AnthropicAiModel.summarize method"
77
type: docs
8-
weight: 10
8+
weight: 20
99
url: /nodejs-net/aspose.words.ai/anthropicaimodel/summarize/
1010
---
1111

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ articleTitle: translate method
55
second_title: Aspose.Words for Node.js
66
description: "AnthropicAiModel.translate method. Translates the provided document into the specified target language"
77
type: docs
8-
weight: 20
8+
weight: 30
99
url: /nodejs-net/aspose.words.ai/anthropicaimodel/translate/
1010
---
1111

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: AnthropicAiModel.url property
3+
linktitle: url property
4+
articleTitle: url property
5+
second_title: Aspose.Words for Node.js
6+
description: "AnthropicAiModel.url property. Gets or sets a URL of the model"
7+
type: docs
8+
weight: 10
9+
url: /nodejs-net/aspose.words.ai/anthropicaimodel/url/
10+
---
11+
12+
## AnthropicAiModel.url property
13+
14+
Gets or sets a URL of the model.
15+
The default value is "https://api.anthropic.com/".
16+
17+
18+
```js
19+
get url(): string
20+
```
21+
22+
### See Also
23+
24+
* module [Aspose.Words.AI](../../)
25+
* class [AnthropicAiModel](../)
26+

0 commit comments

Comments
 (0)