Moved source-related files to Tools namespace

This commit is contained in:
Thorsten Sommer 2025-09-24 11:28:33 +02:00
parent c4a3d893f6
commit 2836e76f20
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108
4 changed files with 3 additions and 4 deletions

View File

@ -1,7 +1,6 @@
@using AIStudio.Tools
@using MudBlazor
@using AIStudio.Components
@using AIStudio.Provider
@inherits AIStudio.Components.MSGComponentBase
<MudCard Class="@this.CardClasses" Outlined="@true">
<MudCardHeader>

View File

@ -1,4 +1,4 @@
namespace AIStudio.Provider;
namespace AIStudio.Tools;
/// <summary>
/// Data model for a source used in the response.

View File

@ -1,4 +1,4 @@
namespace AIStudio.Provider;
namespace AIStudio.Tools;
/// <summary>
/// Data model for a source used in the response.

View File

@ -2,7 +2,7 @@ using System.Text;
using AIStudio.Tools.PluginSystem;
namespace AIStudio.Provider;
namespace AIStudio.Tools;
public static class SourceExtensions
{