using AIStudio.Tools.Rust;
namespace AIStudio.Tools.Services;
public sealed partial class RustService
{
///
/// How long one sanitize request may take.
///
///
/// Web pages and retrieval contexts are small, so this only exists to keep a stuck runtime
/// from blocking the caller forever.
///
private static readonly TimeSpan SANITIZE_TIMEOUT = TimeSpan.FromSeconds(30);
///
/// Asks the runtime to filter prompt injections out of a text.
///
///
/// File content does not go through here: the runtime filters it while it streams the file.
/// This is the path for content the app fetched itself, i.e. web pages and retrieval contexts.
///
/// The content to filter.
/// The filtered content and what was found or null when the runtime could not be reached.
public async Task SanitizePromptInjections(string text)
{
try
{
using var timeoutTokenSource = new CancellationTokenSource(SANITIZE_TIMEOUT);
using var response = await this.http.PostAsJsonAsync(
"/security/prompt-injection/sanitize",
new SanitizePromptInjectionsRequest(text),
cancellationToken: timeoutTokenSource.Token);
if (!response.IsSuccessStatusCode)
{
this.logger?.LogError("Failed to check a text for prompt injections. Status: {StatusCode}, reason: '{ReasonPhrase}'", response.StatusCode, response.ReasonPhrase);
return null;
}
return await response.Content.ReadFromJsonAsync(timeoutTokenSource.Token);
}
catch (Exception exception)
{
this.logger?.LogError(exception, "Failed to check a text for prompt injections.");
return null;
}
}
}