Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public partial interface ISubpackageWorkspacesClient
/// Name for the new workspace
/// </param>
/// <param name="slug">
/// URL-friendly slug (lowercase alphanumeric and hyphens only)
/// URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public partial interface ISubpackageWorkspacesClient
/// New name for the workspace
/// </param>
/// <param name="slug">
/// New URL-friendly slug
/// New URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public sealed partial class CreateWorkspaceRequest
public required string Name { get; set; }

/// <summary>
/// URL-friendly slug (lowercase alphanumeric and hyphens only)
/// URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("slug")]
[global::System.Text.Json.Serialization.JsonRequired]
Expand All @@ -89,7 +89,7 @@ public sealed partial class CreateWorkspaceRequest
/// Name for the new workspace
/// </param>
/// <param name="slug">
/// URL-friendly slug (lowercase alphanumeric and hyphens only)
/// URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </param>
/// <param name="defaultImageModel">
/// Default image model for this workspace
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public sealed partial class UpdateWorkspaceRequest
public string? Name { get; set; }

/// <summary>
/// New URL-friendly slug
/// New URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("slug")]
public string? Slug { get; set; }
Expand Down Expand Up @@ -114,7 +114,7 @@ public sealed partial class UpdateWorkspaceRequest
/// New name for the workspace
/// </param>
/// <param name="slug">
/// New URL-friendly slug
/// New URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace OpenRouter
{
/// <summary>
/// Which fetch engine to use. "auto" (default) uses native if the provider supports it, otherwise Exa. "native" forces the provider's built-in fetch. "exa" uses Exa Contents API (supports BYOK). "openrouter" uses direct HTTP fetch. "firecrawl" uses Firecrawl scrape (requires BYOK).
/// Which fetch engine to use. "auto" (default) uses native if the provider supports it, otherwise Exa. "native" forces the provider's built-in fetch. "exa" uses Exa Contents API. "openrouter" uses direct HTTP fetch. "firecrawl" uses Firecrawl scrape (requires BYOK).
/// </summary>
public enum WebFetchEngineEnum
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public sealed partial class WebFetchServerToolConfig
public global::System.Collections.Generic.IList<string>? BlockedDomains { get; set; }

/// <summary>
/// Which fetch engine to use. "auto" (default) uses native if the provider supports it, otherwise Exa. "native" forces the provider's built-in fetch. "exa" uses Exa Contents API (supports BYOK). "openrouter" uses direct HTTP fetch. "firecrawl" uses Firecrawl scrape (requires BYOK).
/// Which fetch engine to use. "auto" (default) uses native if the provider supports it, otherwise Exa. "native" forces the provider's built-in fetch. "exa" uses Exa Contents API. "openrouter" uses direct HTTP fetch. "firecrawl" uses Firecrawl scrape (requires BYOK).
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("engine")]
[global::System.Text.Json.Serialization.JsonConverter(typeof(global::OpenRouter.JsonConverters.WebFetchEngineEnumJsonConverter))]
Expand Down Expand Up @@ -55,7 +55,7 @@ public sealed partial class WebFetchServerToolConfig
/// Never fetch from these domains.
/// </param>
/// <param name="engine">
/// Which fetch engine to use. "auto" (default) uses native if the provider supports it, otherwise Exa. "native" forces the provider's built-in fetch. "exa" uses Exa Contents API (supports BYOK). "openrouter" uses direct HTTP fetch. "firecrawl" uses Firecrawl scrape (requires BYOK).
/// Which fetch engine to use. "auto" (default) uses native if the provider supports it, otherwise Exa. "native" forces the provider's built-in fetch. "exa" uses Exa Contents API. "openrouter" uses direct HTTP fetch. "firecrawl" uses Firecrawl scrape (requires BYOK).
/// </param>
/// <param name="maxContentTokens">
/// Maximum content length in approximate tokens. Content exceeding this limit is truncated.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ partial void ProcessCreateWorkspaceResponseContent(
/// Name for the new workspace
/// </param>
/// <param name="slug">
/// URL-friendly slug (lowercase alphanumeric and hyphens only)
/// URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ partial void ProcessUpdateWorkspaceResponseContent(
/// New name for the workspace
/// </param>
/// <param name="slug">
/// New URL-friendly slug
/// New URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
6 changes: 3 additions & 3 deletions src/libs/OpenRouter/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8998,7 +8998,7 @@
"firecrawl",
"exa"
],
"description": "Which fetch engine to use. \"auto\" (default) uses native if the provider supports it, otherwise Exa. \"native\" forces the provider's built-in fetch. \"exa\" uses Exa Contents API (supports BYOK). \"openrouter\" uses direct HTTP fetch. \"firecrawl\" uses Firecrawl scrape (requires BYOK).",
"description": "Which fetch engine to use. \"auto\" (default) uses native if the provider supports it, otherwise Exa. \"native\" forces the provider's built-in fetch. \"exa\" uses Exa Contents API. \"openrouter\" uses direct HTTP fetch. \"firecrawl\" uses Firecrawl scrape (requires BYOK).",
"title": "WebFetchEngineEnum"
},
"WebFetchServerToolConfig": {
Expand Down Expand Up @@ -26340,7 +26340,7 @@
},
"slug": {
"type": "string",
"description": "URL-friendly slug (lowercase alphanumeric and hyphens only)"
"description": "URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)"
}
},
"required": [
Expand Down Expand Up @@ -26673,7 +26673,7 @@
},
"slug": {
"type": "string",
"description": "New URL-friendly slug"
"description": "New URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens)"
}
},
"title": "UpdateWorkspaceRequest"
Expand Down