├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── TumeraAI.sln └── TumeraAI ├── App.xaml ├── App.xaml.cs ├── Assets └── StoreLogo.png ├── Converters └── BoolToVisibilityConverter.cs ├── Main ├── API │ └── OAIWrapper.cs ├── Types │ ├── ChatSession.cs │ ├── Message.cs │ └── Model.cs └── Utils │ ├── AppConfig.cs │ ├── Endpoints.cs │ ├── Roles.cs │ └── RuntimeConfig.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Package.appxmanifest ├── Pages ├── AboutPage.xaml ├── AboutPage.xaml.cs ├── ChatPage.xaml └── ChatPage.xaml.cs ├── Properties └── launchSettings.json ├── TumeraAI.csproj └── app.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/README.md -------------------------------------------------------------------------------- /TumeraAI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI.sln -------------------------------------------------------------------------------- /TumeraAI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/App.xaml -------------------------------------------------------------------------------- /TumeraAI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/App.xaml.cs -------------------------------------------------------------------------------- /TumeraAI/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Assets/StoreLogo.png -------------------------------------------------------------------------------- /TumeraAI/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /TumeraAI/Main/API/OAIWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/API/OAIWrapper.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Types/ChatSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Types/ChatSession.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Types/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Types/Message.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Types/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Types/Model.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Utils/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Utils/AppConfig.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Utils/Endpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Utils/Endpoints.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Utils/Roles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Utils/Roles.cs -------------------------------------------------------------------------------- /TumeraAI/Main/Utils/RuntimeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Main/Utils/RuntimeConfig.cs -------------------------------------------------------------------------------- /TumeraAI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/MainWindow.xaml -------------------------------------------------------------------------------- /TumeraAI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TumeraAI/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Package.appxmanifest -------------------------------------------------------------------------------- /TumeraAI/Pages/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Pages/AboutPage.xaml -------------------------------------------------------------------------------- /TumeraAI/Pages/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Pages/AboutPage.xaml.cs -------------------------------------------------------------------------------- /TumeraAI/Pages/ChatPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Pages/ChatPage.xaml -------------------------------------------------------------------------------- /TumeraAI/Pages/ChatPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Pages/ChatPage.xaml.cs -------------------------------------------------------------------------------- /TumeraAI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/Properties/launchSettings.json -------------------------------------------------------------------------------- /TumeraAI/TumeraAI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/TumeraAI.csproj -------------------------------------------------------------------------------- /TumeraAI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishiatee/Tumera/HEAD/TumeraAI/app.manifest --------------------------------------------------------------------------------