2026-09-04 13:48:07 +00:00
|
|
|
using AIStudio.Provider;
|
|
|
|
|
|
|
|
|
|
namespace AIStudio.Tools.Web;
|
|
|
|
|
|
|
|
|
|
public sealed class WebPageRetrievalOptions
|
|
|
|
|
{
|
|
|
|
|
public required int TimeoutSeconds { get; init; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether the user named this exact URL, as opposed to a model asking for it.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Lifts the restrictions on which targets may be reached — private networks, loopback, and
|
|
|
|
|
/// hosts named localhost — because those exist to keep a model from reaching into the user's
|
|
|
|
|
/// network, and the user is not a model. The network-level protections stay: the connection
|
|
|
|
|
/// is still bound to validated addresses, redirects are still checked, the response size is
|
2026-09-23 20:21:09 +00:00
|
|
|
/// still capped, and only HTML and text content are still accepted.<br/><br/>
|
2026-09-04 13:48:07 +00:00
|
|
|
/// Never set this for a URL that reached AI Studio through a model, however plausible it
|
|
|
|
|
/// looks.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public bool TargetChosenByUser { get; init; }
|
|
|
|
|
|
|
|
|
|
public bool PublicTargetsOnly { get; init; }
|
|
|
|
|
|
|
|
|
|
public ConfidenceLevel ProviderConfidence { get; init; } = ConfidenceLevel.NONE;
|
|
|
|
|
|
|
|
|
|
public bool UseOsSso { get; init; }
|
|
|
|
|
|
|
|
|
|
public Func<string, bool>? IsPrivateHostAllowed { get; init; }
|
|
|
|
|
|
2026-09-23 15:17:37 +00:00
|
|
|
/// <summary>
|
|
|
|
|
/// Decides for every URL, the first one as well as each redirect target, whether it may be
|
|
|
|
|
/// requested at all. It runs before anything is sent, so a refused target never sees the URL.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Func<Uri, bool>? IsTargetAllowed { get; init; }
|
|
|
|
|
|
2026-09-04 13:48:07 +00:00
|
|
|
public Func<Uri, ConfidenceLevel, Task>? OnPrivateHostProviderBlockAsync { get; init; }
|
|
|
|
|
}
|