Skip to content

Commit ce5bea4

Browse files
committed
docs: Fix links to the Supported AI models page (box/box-openapi#589)
1 parent 7d06156 commit ce5bea4

File tree

16 files changed

+18
-18
lines changed

16 files changed

+18
-18
lines changed

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "engineHash": "7c01dda", "specHash": "ca63e5e", "version": "6.5.0" }
1+
{ "engineHash": "7c01dda", "specHash": "2bd751f", "version": "6.5.0" }

BoxSdkGen/Sources/Schemas/AiAgentBasicGenTool/AiAgentBasicGenTool.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public class AiAgentBasicGenTool: AiAgentLongTextToolTextGen {
2222
/// Initializer for a AiAgentBasicGenTool.
2323
///
2424
/// - Parameters:
25-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
25+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2626
/// - numTokensForCompletion: The number of tokens for completion.
2727
/// - llmEndpointParams:
2828
/// - systemMessage: System messages aim at helping the LLM understand its role and what it is supposed to do.

BoxSdkGen/Sources/Schemas/AiAgentBasicTextTool/AiAgentBasicTextTool.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class AiAgentBasicTextTool: AiAgentBasicTextToolBase {
2727
/// Initializer for a AiAgentBasicTextTool.
2828
///
2929
/// - Parameters:
30-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
30+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
3131
/// - numTokensForCompletion: The number of tokens for completion.
3232
/// - llmEndpointParams:
3333
/// - systemMessage: System messages try to help the LLM "understand" its role and what it is supposed to do.

BoxSdkGen/Sources/Schemas/AiAgentBasicTextToolBase/AiAgentBasicTextToolBase.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class AiAgentBasicTextToolBase: Codable, RawJSONReadable {
1717
}
1818

1919

20-
/// The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
20+
/// The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2121
public let model: String?
2222

2323
/// The number of tokens for completion.
@@ -28,7 +28,7 @@ public class AiAgentBasicTextToolBase: Codable, RawJSONReadable {
2828
/// Initializer for a AiAgentBasicTextToolBase.
2929
///
3030
/// - Parameters:
31-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
31+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
3232
/// - numTokensForCompletion: The number of tokens for completion.
3333
/// - llmEndpointParams:
3434
public init(model: String? = nil, numTokensForCompletion: Int64? = nil, llmEndpointParams: AiLlmEndpointParams? = nil) {

BoxSdkGen/Sources/Schemas/AiAgentBasicTextToolTextGen/AiAgentBasicTextToolTextGen.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class AiAgentBasicTextToolTextGen: AiAgentBasicTextToolBase {
2929
/// Initializer for a AiAgentBasicTextToolTextGen.
3030
///
3131
/// - Parameters:
32-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
32+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
3333
/// - numTokensForCompletion: The number of tokens for completion.
3434
/// - llmEndpointParams:
3535
/// - systemMessage: System messages aim at helping the LLM understand its role and what it is supposed to do.

BoxSdkGen/Sources/Schemas/AiAgentLongTextTool/AiAgentLongTextTool.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class AiAgentLongTextTool: AiAgentBasicTextTool {
2020
/// Initializer for a AiAgentLongTextTool.
2121
///
2222
/// - Parameters:
23-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
23+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2424
/// - numTokensForCompletion: The number of tokens for completion.
2525
/// - llmEndpointParams:
2626
/// - systemMessage: System messages try to help the LLM "understand" its role and what it is supposed to do.

BoxSdkGen/Sources/Schemas/AiAgentLongTextToolTextGen/AiAgentLongTextToolTextGen.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class AiAgentLongTextToolTextGen: AiAgentBasicTextToolTextGen {
2020
/// Initializer for a AiAgentLongTextToolTextGen.
2121
///
2222
/// - Parameters:
23-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
23+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2424
/// - numTokensForCompletion: The number of tokens for completion.
2525
/// - llmEndpointParams:
2626
/// - systemMessage: System messages aim at helping the LLM understand its role and what it is supposed to do.

BoxSdkGen/Sources/Schemas/AiAgentSpreadsheetTool/AiAgentSpreadsheetTool.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class AiAgentSpreadsheetTool: Codable, RawJSONReadable {
1717
}
1818

1919

20-
/// The model used for the AI agent for spreadsheets. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
20+
/// The model used for the AI agent for spreadsheets. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2121
public let model: String?
2222

2323
/// The number of tokens for completion.
@@ -28,7 +28,7 @@ public class AiAgentSpreadsheetTool: Codable, RawJSONReadable {
2828
/// Initializer for a AiAgentSpreadsheetTool.
2929
///
3030
/// - Parameters:
31-
/// - model: The model used for the AI agent for spreadsheets. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
31+
/// - model: The model used for the AI agent for spreadsheets. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
3232
/// - numTokensForCompletion: The number of tokens for completion.
3333
/// - llmEndpointParams:
3434
public init(model: String? = nil, numTokensForCompletion: Int64? = nil, llmEndpointParams: AiLlmEndpointParams? = nil) {

BoxSdkGen/Sources/Schemas/AiStudioAgentBasicGenTool/AiStudioAgentBasicGenTool.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class AiStudioAgentBasicGenTool: AiAgentBasicGenTool {
2121
/// Initializer for a AiStudioAgentBasicGenTool.
2222
///
2323
/// - Parameters:
24-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
24+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2525
/// - numTokensForCompletion: The number of tokens for completion.
2626
/// - llmEndpointParams:
2727
/// - systemMessage: System messages aim at helping the LLM understand its role and what it is supposed to do.

BoxSdkGen/Sources/Schemas/AiStudioAgentBasicGenToolResponse/AiStudioAgentBasicGenToolResponse.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class AiStudioAgentBasicGenToolResponse: AiStudioAgentBasicGenTool {
2121
/// Initializer for a AiStudioAgentBasicGenToolResponse.
2222
///
2323
/// - Parameters:
24-
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/supported-models).
24+
/// - model: The model used for the AI agent for basic text. For specific model values, see the [available models list](https://developer.box.com/guides/box-ai/ai-models).
2525
/// - numTokensForCompletion: The number of tokens for completion.
2626
/// - llmEndpointParams:
2727
/// - systemMessage: System messages aim at helping the LLM understand its role and what it is supposed to do.

0 commit comments

Comments
 (0)