diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 68adc84..c2ae157 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -17,8 +17,8 @@ jobs: runs-on: ${{ matrix.os }} env: - Solution_Name: SmallRuleAI.sln - Project_Path: src/SRA.csproj + Solution_Name: NtAI.sln + Project_Path: src/NtAI.csproj steps: - name: Checkout diff --git a/SmallRuleAI.sln b/NtAI.sln similarity index 86% rename from SmallRuleAI.sln rename to NtAI.sln index f96b775..f4cd732 100644 --- a/SmallRuleAI.sln +++ b/NtAI.sln @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SRA", "src\SRA.csproj", "{4624D3B9-61F0-44E9-9771-D7AB1DE3F183}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NtAI", "src/NtAI.csproj", "{4624D3B9-61F0-44E9-9771-D7AB1DE3F183}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/README.md b/README.md index 21cdadb..6e0f892 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -# SRA Simple Console Chatbot +NtAI - Not an AI A lightweight, rule-based console chatbot built with C#. This project demonstrates basic programming concepts including input handling, conditional logic, and modular code organization. @@ -12,14 +12,8 @@ A lightweight, rule-based console chatbot built with C#. This project demonstrat - Null/empty input handling - Basic error handling with try-catch -## 🏗️ Project Structure +Response messages handler -``` -SRA/ -├── SRA.EntryPoint.cs - Entry point, exception handling -├── SRA.Core.cs - Main chat logic and loop control -└── SRA.InputHandle.cs - Response messages handler -``` ## 📋 Prerequisites @@ -31,8 +25,8 @@ SRA/ ### Clone and Build ```bash -git clone https://github.com/dryfish09/SmallRuleAI.git -cd SmallRuleAI/src +git clone https://github.com/dryfish09/NtAI.git +cd NtAI/src dotnet restore dotnet build ``` diff --git a/src/SRA.Core.cs b/src/NtAI.Core.cs similarity index 98% rename from src/SRA.Core.cs rename to src/NtAI.Core.cs index fa71cf4..e37a02d 100644 --- a/src/SRA.Core.cs +++ b/src/NtAI.Core.cs @@ -1,6 +1,6 @@ using System; using DryFish.ILib; -namespace SRA +namespace NtAI { class Core { diff --git a/src/SRA.EntryPoint.cs b/src/NtAI.EntryPoint.cs similarity index 98% rename from src/SRA.EntryPoint.cs rename to src/NtAI.EntryPoint.cs index 769f508..2ee3258 100644 --- a/src/SRA.EntryPoint.cs +++ b/src/NtAI.EntryPoint.cs @@ -1,6 +1,6 @@ using System; using DryFish.ILib; -namespace SRA +namespace NtAI { class Program { diff --git a/src/SRA.InputHandle.cs b/src/NtAI.InputHandle.cs similarity index 99% rename from src/SRA.InputHandle.cs rename to src/NtAI.InputHandle.cs index 0f5d936..fecc045 100644 --- a/src/SRA.InputHandle.cs +++ b/src/NtAI.InputHandle.cs @@ -1,6 +1,6 @@ using System; -namespace SRA +namespace NtAI { class Response { diff --git a/src/SRA.csproj b/src/NtAI.csproj similarity index 100% rename from src/SRA.csproj rename to src/NtAI.csproj