A C# wrapper for the CoreBrain Python CLI tool, providing seamless integration between .NET applications and CoreBrain's cognitive computing capabilities.
- 🚀 Native C# interface for CoreBrain functions
- 🛠️ Supports both development and production workflows
See the main corebrain package installation on https://github.com/ceoweggo/Corebrain/blob/main/README.md#installation
using CorebrainCS;
// Initialize wrapper (auto-detects Python environment)
var corebrain = new CorebrainCS();
// Get version
Console.WriteLine($"CoreBrain version: {corebrain.Version()}");// Custom configuration
var corebrain = new CorebrainCS(
pythonPath: "path/to/python", // Custom python path
scriptPath: "path/to/cli", // Custom CoreBrain CLI path
verbose: true // Enable debug logging
);| Command | C# Method | Description |
|---|---|---|
--version |
.Version() |
Get CoreBrain version |
Corebrain-CS/
├── CorebrainCS/ # C# wrapper library
├── CorebrainCLI/ # Example consumer app
├── corebrain/ # Embedded Python package
MIT License - See LICENSE for details.