Cephable.Core 1.1.1

dotnet add package Cephable.Core --version 1.1.1                
NuGet\Install-Package Cephable.Core -Version 1.1.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cephable.Core" Version="1.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cephable.Core --version 1.1.1                
#r "nuget: Cephable.Core, 1.1.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cephable.Core as a Cake Addin
#addin nuget:?package=Cephable.Core&version=1.1.1

// Install Cephable.Core as a Cake Tool
#tool nuget:?package=Cephable.Core&version=1.1.1                

Cephable Core

The Cephable Core provides the foundation for building applications with advanced voice controls, device profiles, and user authentication. This contains the core models and services that can be extended for various platforms like WPF and WinUI3.

Overview

The Cephable Core SDK is designed to handle the core functionalities required to build dynamic, voice-controlled applications. It includes:

  • Cephable Service Integration: A central service that integrates various features like voice controls, device profiles, and user authentication..
  • API Service: Handles communication with Cephable's backend services for user management, device control, and more.
  • Device Profile Management: Services for handling user device profiles, including loading, updating, and switching profiles.
  • HTTP Data Provider: A robust, generic service for making HTTP requests.

Extensions

This SDK is extended by other SDKs:

  • Cephable WPF SDK: Provides WPF-specific implementations of the services in this SDK.
  • Cephable WinUI3 SDK: Provides WinUI3-specific implementations.

Services

1. CephableService

Purpose: A central service that integrates various features like voice controls, device profiles, and user authentication.

Key Methods:

  • InitializeAsync(CephableConfiguration config): Initializes the Cephable service with the provided configuration.
  • StartVoiceControls(VoiceControlsConfiguration config): Starts voice controls with the specified configuration.
  • StartCameraControls(CameraControlsConfiguration config): Starts camera controls with the specified configuration.`

Example:

var cephableService = new CephableService(voiceService, apiService, secureStorageProvider, authService, deviceProfileService, keyboardMouseService, cameraService, desktopService);
await cephableService.InitializeAsync(new CephableConfiguration
{
    DeviceTypeId = "deviceTypeId",
    DeviceName = "My Device",
    AuthConfiguration = new AuthConfiguration
    {
        ClientId = "clientId",
        RedirectUri = "redirectUri"
    }
});

2. CephableApiService

Purpose: Handles communication with Cephable's backend services for user management, device control, and more.

Key Methods:

  • GetUserDevices(): Retrieves a list of user devices.
  • CreateProfile(UpdateUserDeviceProfileRequest configuration): Creates a new device profile.
  • GetVoiceModelReferenceForLocale(string locale, string fileFormat): Retrieves a voice model reference for a specific locale.

Example:

var apiService = new CephableApiService(new CephableApiConfiguration { BaseUrl = "https://api.cephable.com" }, new CephableHttpClient());
var userDevices = await apiService.GetUserDevices();
var profileResult = await apiService.CreateProfile(new UpdateUserDeviceProfileRequest
{
    ProfileName = "New Profile",
    Configuration = new DeviceProfileConfiguration { /* profile configuration */ }
});

3. DeviceProfileService

Purpose: Manages user device profiles, allowing you to load, update, and switch between profiles dynamically.

Key Properties:

  • Profiles: Holds the list of user device profiles.
  • CurrentProfile: The currently active profile.

Key Methods:

  • LoadProfiles(): Loads profiles from secure storage or the API.
  • UpdateLocalProfiles(List<UserDeviceProfileModel> profiles): Updates and saves local profiles.

Example:

var deviceProfileService = new DeviceProfileService(secureStorageProvider, apiService, authService);
var profiles = await deviceProfileService.LoadProfiles();
deviceProfileService.CurrentProfile = profiles.FirstOrDefault();

Installation

To install the Cephable Core SDK, use the following NuGet command:

Install-Package Cephable.Core

Getting Started

  1. Install the Cephable Core SDK via NuGet.
  2. Create and configure the necessary services.
  3. Integrate voice controls, device profiles, and user authentication into your application.

License

The Cephable WPF SDK is only available to licensed users. Ensure that your application complies with Cephable�s licensing terms. For more details on obtaining a license, please contact Cephable Sales.

Support and Contact

For any inquiries, please contact Cephable or your account representatitve.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Cephable.Core:

Package Downloads
Cephable.WPF

Add Cephable services and controls to your Windows app. Includes Desktop controls, Cephable user authentication, offline speech recognition and voice controls, camera based gesture controls, and more.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.1 127 9/16/2024
1.1.0 109 9/6/2024
1.0.11 107 9/4/2024