Skip to content
Merged

G #6

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 .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion SmallRuleAI.sln → NtAI.sln
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -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

Expand All @@ -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
```
Expand Down
2 changes: 1 addition & 1 deletion src/SRA.Core.cs → src/NtAI.Core.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using DryFish.ILib;
namespace SRA
namespace NtAI
{
class Core
{
Expand Down
2 changes: 1 addition & 1 deletion src/SRA.EntryPoint.cs → src/NtAI.EntryPoint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using DryFish.ILib;
namespace SRA
namespace NtAI
{
class Program
{
Expand Down
2 changes: 1 addition & 1 deletion src/SRA.InputHandle.cs → src/NtAI.InputHandle.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;

namespace SRA
namespace NtAI
{
class Response
{
Expand Down
File renamed without changes.
Loading