VOOZH about

URL: https://www.nuget.org/packages/CircleAI.Tools/

⇱ NuGet Gallery | CircleAI.Tools 1.2.0




👁 Image
CircleAI.Tools 1.2.0

dotnet add package CircleAI.Tools --version 1.2.0
 
 
NuGet\Install-Package CircleAI.Tools -Version 1.2.0
 
 
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="CircleAI.Tools" Version="1.2.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CircleAI.Tools" Version="1.2.0" />
 
Directory.Packages.props
<PackageReference Include="CircleAI.Tools" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CircleAI.Tools --version 1.2.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CircleAI.Tools, 1.2.0"
 
 
#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.
#:package CircleAI.Tools@1.2.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CircleAI.Tools&version=1.2.0
 
Install as a Cake Addin
#tool nuget:?package=CircleAI.Tools&version=1.2.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Circle AI — 10-Language SDK

· · · · · · · · · ·

The portable core of the Circle AI companion stack. Runs natively alongside every Aether Protocol node — wearable, phone, IoT, HarmonyOS — with no FFI overhead and no runtime bridging.


Portable Core (8 modules)

Module Key types
models ChatMessage, DownloadProgress
memory AffectState, EpisodicMemoryEntry, PersonaState, Goal
identity CircleIdentity, RegisteredDevice, IdentityTier
languages LanguageTag, KnownLanguages (20 BCP-47 tags), WritingSystem
companion CompanionContext, CompanionTurn, ICompanionSession
inference GenerationOptions, IChatGenerator
tools ToolDefinition, ToolInvocation, ToolResult, IToolBridge
sync SyncDelta, SyncDeliveryMode, ISyncChannel

Language Quickstart

C# (.NET)

dotnet add package CircleAI.Core
using CircleAI.Memory;
using CircleAI.Languages;

var state = new AffectState();
state.ApplyPositiveSignal();
Console.WriteLine(state.Engagement); // 0.52

var lang = KnownLanguages.Zulu;
Console.WriteLine(lang.BcpTag); // "zu"

Python

pip install circle-ai-sdk
from circle_ai.memory import AffectState
from circle_ai.languages import KnownLanguages

state = AffectState()
state.apply_positive_signal()
print(state.engagement) # 0.52

reg = KnownLanguages()
print(reg.find_by_bcp_tag("zu").english_name) # Zulu

TypeScript / Node.js

npm install @bhengubv/circle-ai
import { AffectState, KnownLanguages } from '@bhengubv/circle-ai';

const state = new AffectState();
state.applyPositiveSignal();
console.log(state.engagement); // 0.52

const reg = new KnownLanguages();
console.log(reg.findByBcpTag('zu')?.englishName); // Zulu

Go

go get github.com/bhengubv/CircleAI/go
import "github.com/bhengubv/CircleAI/go"

state := circleai.NewAffectState()
state.ApplyPositiveSignal()
fmt.Println(state.Engagement) // 0.52

lang := circleai.FindLanguage("zu")
fmt.Println(lang.EnglishName) // Zulu

Kotlin (JVM)

// build.gradle.kts
implementation("com.bhengubv:circle-ai:0.1.0")
import com.bhengubv.circleai.AffectState
import com.bhengubv.circleai.KnownLanguages

val state = AffectState()
state.applyPositiveSignal()
println(state.engagement) // 0.52

println(KnownLanguages.findByBcpTag("zu")?.englishName) // Zulu

Swift

// Package.swift
.package(url: "https://github.com/bhengubv/CircleAI.git", from: "0.1.0")
import CircleAI

let state = AffectState()
state.applyPositiveSignal()
print(state.engagement) // 0.52

let reg = KnownLanguages()
print(reg.findByBcpTag("zu")?.englishName ?? "") // Zulu

Rust

# Cargo.toml
circle-ai = "0.1.0"
use circle_ai::memory::AffectState;
use circle_ai::languages::KnownLanguages;

let mut state = AffectState::default();
state.apply_positive_signal();
println!("{}", state.engagement); // 0.52

let lang = KnownLanguages::find_by_bcp_tag("zu").unwrap();
println!("{}", lang.english_name); // Zulu

C (CMake)

# CMakeLists.txt
FetchContent_Declare(circle_ai
 GIT_REPOSITORY https://github.com/bhengubv/CircleAI.git
 GIT_TAG v0.1.0
 SOURCE_SUBDIR c
)
FetchContent_MakeAvailable(circle_ai)
target_link_libraries(my_app circle_ai)
#include "circle_ai/circle_ai.h"

ca_affect_state_t s = ca_affect_state_default();
ca_affect_state_positive_signal(&s);
printf("%.2f\n", s.engagement); /* 0.52 */

const ca_language_tag_t* zu = ca_find_language("zu");
printf("%s\n", zu->english_name); /* Zulu */

Android (Kotlin)

// build.gradle.kts
implementation("com.bhengubv:circle-ai-android:0.1.0")
import com.bhengubv.circleai.AffectState
import com.bhengubv.circleai.KnownLanguages

val state = AffectState()
state.applyPositiveSignal()
Log.d("CircleAI", "Engagement: ${state.engagement}") // 0.52

HarmonyOS / ArkTS

// oh-package.json5
"dependencies": { "@bhengubv/circle-ai": "^0.1.0" }
import { AffectState, KnownLanguages } from '@bhengubv/circle-ai';

const state = new AffectState();
state.applyPositiveSignal();
console.log(state.engagement); // 0.52

AffectState — Cross-Language Math

All 10 implementations produce identical float results (ε ≤ 1e-5).

Operation Effect
applyPositiveSignal() engagement +0.02, rapport +0.01, uncertainty −0.02 (clamped [0, 1])
applyNegativeSignal() engagement −0.03, uncertainty +0.03 (clamped)
applyIdleDecay(hours) decay = min(0.3, hours × 0.02); engagement and energy lerp toward 0.5

Test vectors in (12 vectors). Validated by CI across all 10 languages.


Languages Registry (20 BCP-47 tags)

zu · st · af · sw · ha · am · yo · ig · xh · nso · tn · so · om · ar · en · pt · fr · es · zh · hi


Repository Layout

CircleAI/
├── src/ C# reference implementation (CircleAI.*)
├── tests/ C# test suite
├── fixtures/ Cross-language test vectors (JSON)
├── docs/ CONTRACTS.md · MEMORY_SPEC.md · COMPANION_SPEC.md
├── android/ Kotlin/Android library
├── c/ Pure C99, CMake
├── go/ Go module
├── harmonyos/ ArkTS, OpenHarmony
├── kotlin/ Kotlin/JVM
├── python/ Python 3.12+
├── rust/ Rust, Cargo
├── swift/ Swift 5.9+, Swift Package Manager
└── typescript/ TypeScript, npm

CI

Workflow Trigger
push/PR to master — runs all 10 test suites
git tag v*.*.* — publishes to NuGet, crates.io, PyPI, npm, GitHub Packages

License

MIT

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

NuGet packages (2)

Showing the top 2 NuGet packages that depend on CircleAI.Tools:

Package Downloads
CircleAI.Hosting

DI wiring + proactive reasoning host for Circle AI — 2.0.3 adds the CircleAI.Hosting.Tools namespace: ToolDescriptor + IToolCatalog + IToolProvider + IToolExecutor + InMemoryToolCatalog (keyword-substring search) + ToolCatalogExtensions.ImportFromAsync. Pattern-port skeleton from composio (MIT) under Apache 2.0; downstream consumers (circle-concierge, Observer's IObserverTool) can build IToolProvider impls now. Full catalog (semantic search + bundled SaaS integrations) lands in 2.5.0. Carries forward 2.0.1's Generative UI plug point and 2.0.0's RT-04 brownout + RT-08 fallback chain.

CircleAI.Companion

Circle AI Companion — the HER + JARVIS concierge persona. Knows who you are, remembers everything across all devices, speaks your language, feels your mood, adapts its personality, initiates contact, and acts in the world. The crown jewel of the Circle AI platform.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.2.0 1,048 6/6/2026
1.0.0 128 6/3/2026