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
4 changes: 2 additions & 2 deletions src/libs/Exa/Generated/Exa.Models.AgentCostDollars.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public sealed partial class AgentCostDollars
public required double PhoneNumbers { get; set; }

/// <summary>
/// Per-provider cost in dollars for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only providers with non-zero usage are included.
/// Per-provider cost in dollars for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only providers with non-zero usage are included.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("dataSources")]
public global::System.Collections.Generic.Dictionary<string, double>? DataSources { get; set; }
Expand All @@ -64,7 +64,7 @@ public sealed partial class AgentCostDollars
/// <param name="emails"></param>
/// <param name="phoneNumbers"></param>
/// <param name="dataSources">
/// Per-provider cost in dollars for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only providers with non-zero usage are included.
/// Per-provider cost in dollars for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only providers with non-zero usage are included.
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
2 changes: 1 addition & 1 deletion src/libs/Exa/Generated/Exa.Models.AgentDataSourceCost.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Exa
{
/// <summary>
/// Per-provider cost in dollars for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only providers with non-zero usage are included.
/// Per-provider cost in dollars for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only providers with non-zero usage are included.
/// </summary>
public sealed partial class AgentDataSourceCost
{
Expand Down
12 changes: 6 additions & 6 deletions src/libs/Exa/Generated/Exa.Models.AgentDataSourceProvider.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public enum AgentDataSourceProvider
/// <summary>
///
/// </summary>
FiberAi,
Fiber,
/// <summary>
///
/// </summary>
Expand All @@ -31,7 +31,7 @@ public enum AgentDataSourceProvider
/// <summary>
///
/// </summary>
ParticleNews,
Particle,
/// <summary>
///
/// </summary>
Expand All @@ -52,10 +52,10 @@ public static string ToValueString(this AgentDataSourceProvider value)
{
AgentDataSourceProvider.Affiliate => "affiliate",
AgentDataSourceProvider.Baselayer => "baselayer",
AgentDataSourceProvider.FiberAi => "fiber_ai",
AgentDataSourceProvider.Fiber => "fiber",
AgentDataSourceProvider.FinancialDatasets => "financial_datasets",
AgentDataSourceProvider.Jinko => "jinko",
AgentDataSourceProvider.ParticleNews => "particle_news",
AgentDataSourceProvider.Particle => "particle",
AgentDataSourceProvider.Similarweb => "similarweb",
_ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null),
};
Expand All @@ -69,10 +69,10 @@ public static string ToValueString(this AgentDataSourceProvider value)
{
"affiliate" => AgentDataSourceProvider.Affiliate,
"baselayer" => AgentDataSourceProvider.Baselayer,
"fiber_ai" => AgentDataSourceProvider.FiberAi,
"fiber" => AgentDataSourceProvider.Fiber,
"financial_datasets" => AgentDataSourceProvider.FinancialDatasets,
"jinko" => AgentDataSourceProvider.Jinko,
"particle_news" => AgentDataSourceProvider.ParticleNews,
"particle" => AgentDataSourceProvider.Particle,
"similarweb" => AgentDataSourceProvider.Similarweb,
_ => null,
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Exa
{
/// <summary>
/// Per-provider tool call counts for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only providers with non-zero usage are included.
/// Per-provider tool call counts for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only providers with non-zero usage are included.
/// </summary>
public sealed partial class AgentDataSourceUsage
{
Expand Down
4 changes: 2 additions & 2 deletions src/libs/Exa/Generated/Exa.Models.AgentUsage.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public sealed partial class AgentUsage
public required int PhoneNumbers { get; set; }

/// <summary>
/// Per-provider tool call counts for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only providers with non-zero usage are included.
/// Per-provider tool call counts for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only providers with non-zero usage are included.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("dataSources")]
public global::System.Collections.Generic.Dictionary<string, int>? DataSources { get; set; }
Expand All @@ -56,7 +56,7 @@ public sealed partial class AgentUsage
/// <param name="emails"></param>
/// <param name="phoneNumbers"></param>
/// <param name="dataSources">
/// Per-provider tool call counts for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only providers with non-zero usage are included.
/// Per-provider tool call counts for Exa Connect data sources used during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only providers with non-zero usage are included.
/// </param>
#if NET7_0_OR_GREATER
[global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers]
Expand Down
12 changes: 6 additions & 6 deletions src/libs/Exa/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6044,19 +6044,19 @@ components:
provider:
description: Exa Connect data provider to enable for the run. All provider
tools are available by default.
example: fiber_ai
example: fiber
"$ref": "#/components/schemas/AgentDataSourceProvider"
required:
- provider
AgentDataSourceProvider:
type: string
enum:
- fiber_ai
- fiber
- financial_datasets
- similarweb
- baselayer
- affiliate
- particle_news
- particle
- jinko
description: Identifier of an Exa Connect data provider.
SearchResponse:
Expand Down Expand Up @@ -6911,7 +6911,7 @@ components:
type: integer
minimum: 0
description: Per-provider tool call counts for Exa Connect data sources used
during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only
during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only
providers with non-zero usage are included.
AgentCostDollars:
type: object
Expand Down Expand Up @@ -6948,7 +6948,7 @@ components:
type: number
minimum: 0
description: Per-provider cost in dollars for Exa Connect data sources used
during the run. Keys are provider names (e.g. `fiber_ai`, `similarweb`). Only
during the run. Keys are provider names (e.g. `fiber`, `similarweb`). Only
providers with non-zero usage are included.
AgentErrorResponse:
type: object
Expand Down Expand Up @@ -8667,7 +8667,7 @@ components:
provider:
description: Exa Connect data provider to enable for the run. All provider
tools are available by default.
example: fiber_ai
example: fiber
"$ref": "#/components/schemas/AgentDataSourceProvider"
required:
- provider
Expand Down