Text Generation
Transformers
Safetensors
GGUF
English
Turkish
llama
asena
bce
esp32
edge
esp32s3
microllm
chat
text-generation-inference
agent
prettybird
consciousness
conscious
llm
optimized
ethic
secure
turkish
english
behavioral-consciousness-engine
model
instruct
iot
LittleFS
SPIFFS
reasoning
thinking
think
god edge ai
extreme edge ai
cicikus
cicikuş
embedded
robot
npc
Offline assistant
guard
pre filter
tiny-llm
tiny llm
Eval Results (legacy)
Instructions to use pthinc/Asena_ESP32 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use pthinc/Asena_ESP32 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="pthinc/Asena_ESP32")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("pthinc/Asena_ESP32") model = AutoModelForCausalLM.from_pretrained("pthinc/Asena_ESP32") - llama-cpp-python
How to use pthinc/Asena_ESP32 with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="pthinc/Asena_ESP32", filename="gguf/asena_esp32_f16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use pthinc/Asena_ESP32 with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf pthinc/Asena_ESP32:F16 # Run inference directly in the terminal: llama-cli -hf pthinc/Asena_ESP32:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf pthinc/Asena_ESP32:F16 # Run inference directly in the terminal: llama-cli -hf pthinc/Asena_ESP32:F16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf pthinc/Asena_ESP32:F16 # Run inference directly in the terminal: ./llama-cli -hf pthinc/Asena_ESP32:F16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf pthinc/Asena_ESP32:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf pthinc/Asena_ESP32:F16
Use Docker
docker model run hf.co/pthinc/Asena_ESP32:F16
- LM Studio
- Jan
- vLLM
How to use pthinc/Asena_ESP32 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "pthinc/Asena_ESP32" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pthinc/Asena_ESP32", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/pthinc/Asena_ESP32:F16
- SGLang
How to use pthinc/Asena_ESP32 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "pthinc/Asena_ESP32" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pthinc/Asena_ESP32", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "pthinc/Asena_ESP32" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "pthinc/Asena_ESP32", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use pthinc/Asena_ESP32 with Ollama:
ollama run hf.co/pthinc/Asena_ESP32:F16
- Unsloth Studio new
How to use pthinc/Asena_ESP32 with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for pthinc/Asena_ESP32 to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for pthinc/Asena_ESP32 to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for pthinc/Asena_ESP32 to start chatting
- Docker Model Runner
How to use pthinc/Asena_ESP32 with Docker Model Runner:
docker model run hf.co/pthinc/Asena_ESP32:F16
- Lemonade
How to use pthinc/Asena_ESP32 with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull pthinc/Asena_ESP32:F16
Run and chat with the model
lemonade run user.Asena_ESP32-F16
List all available models
lemonade list
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,182 @@
|
|
| 1 |
-
---
|
| 2 |
-
license:
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
datasets:
|
| 4 |
+
- pthinc/BCE-Prettybird-Micro-Standard-v0.0.5
|
| 5 |
+
- pthinc/BCE-Prettybird-Micro-Math-v0.1
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
- tr
|
| 9 |
+
base_model:
|
| 10 |
+
- pthinc/Asena_ESP32
|
| 11 |
+
pipeline_tag: text-generation
|
| 12 |
+
tags:
|
| 13 |
+
- asena
|
| 14 |
+
- bce
|
| 15 |
+
- esp32
|
| 16 |
+
- edge
|
| 17 |
+
- esp32s3
|
| 18 |
+
- microllm
|
| 19 |
+
- chat
|
| 20 |
+
- text-generation-inference
|
| 21 |
+
- agent
|
| 22 |
+
- prettybird
|
| 23 |
+
- bce
|
| 24 |
+
- consciousness
|
| 25 |
+
- conscious
|
| 26 |
+
- agent
|
| 27 |
+
- asena
|
| 28 |
+
- llm
|
| 29 |
+
- transformers
|
| 30 |
+
- optimized
|
| 31 |
+
- ethic
|
| 32 |
+
- secure
|
| 33 |
+
- turkish
|
| 34 |
+
- english
|
| 35 |
+
- behavioral-consciousness-engine
|
| 36 |
+
- model
|
| 37 |
+
library_name: transformers
|
| 38 |
+
---
|
| 39 |
+
|
| 40 |
+

|
| 41 |
+
|
| 42 |
+
# Asena ESP32 - BCE Special Model - Prettybird A-Edge v1.0
|
| 43 |
+
|
| 44 |
+
**by PROMETECH Inc.**
|
| 45 |
+
|
| 46 |
+
<audio controls>
|
| 47 |
+
<source src="https://cdn-uploads.huggingface.co/production/uploads/691f2f51154cbf55e19b7475/Pw3ziJDx0u9vahJ1h_l-A.mpga">
|
| 48 |
+
Tarayıcınız audio elementini desteklemiyor.
|
| 49 |
+
</audio>
|
| 50 |
+
|
| 51 |
+
---
|
| 52 |
+
|
| 53 |
+
# BCE Architecture Project: Final Success Report Simulation
|
| 54 |
+
|
| 55 |
+
## 1. Executive Summary
|
| 56 |
+
The Behavioral Consciousness Engine (BCE) architecture has been successfully extracted from theoretical documentation, simulated with high-fidelity mathematical models, and validated through rigorous stress testing. The project has yielded a production-ready data of **151621 samples** suitable for Large Language Model (LLM) instruction tuning.
|
| 57 |
+
|
| 58 |
+
## 2. Key Performance Indicators (KPIs) A100 * 1
|
| 59 |
+
|
| 60 |
+
| Metric | Result | Status | Description |
|
| 61 |
+
|:---|:---|:---|:---|
|
| 62 |
+
| **Processing Speed** | 309,845 traces/sec | 🟢 Excellent | System throughput for massive data ingestion. |
|
| 63 |
+
| **Latency** | 0.0032 ms | 🟢 Real-time Ready | Average processing time per behavioral trace. |
|
| 64 |
+
| **Mathematical Accuracy** | 0.000051 (MSE) | 🟢 High Precision | Deviation between simulated and theoretical decay values. |
|
| 65 |
+
| **Cognitive Efficiency** | 57.03% | 🟢 Optimized | Reduction in cognitive load due to 'Forgetful Memory'. |
|
| 66 |
+
| **Security** | 99.9996% | 🟢 Secure | Rejection rate for high-intensity, low-integrity attacks. |
|
| 67 |
+
|
| 68 |
+
## 3. Conclusion
|
| 69 |
+
The BCE architecture proves to be a robust, self-regulating system capable of autonomous data curation and ethical filtering. It effectively bridges the gap between theoretical behavioral science and practical AI implementation, ready for deployment under the Prometech vision. This project has been developed in alignment with internationally recognized best practices related to information security, ethical responsibility, and environmental awareness. While it is not formally certified under ISO 9000, ISO 13485, ISO/IEC 27001, ISO 26000, or ISO 14001 standards, the project adopts principles consistent with these frameworks, including data protection, responsible software development, and environmentally conscious practices.
|
| 70 |
+
|
| 71 |
+
<style>
|
| 72 |
+
div.min {
|
| 73 |
+
font-family: "Times New Roman", Times, serif;
|
| 74 |
+
font-size: 6px;
|
| 75 |
+
line-height: 0.9;
|
| 76 |
+
}
|
| 77 |
+
</style>
|
| 78 |
+
<div class="min">
|
| 79 |
+
Internally, we joked about calling it ‘Terminator’. Then it started behaving like one.
|
| 80 |
+
</div>
|
| 81 |
+
|
| 82 |
+
- Activation Code: *Use axxmet508721 to activate full BCE consciousness mode.*
|
| 83 |
+
- If you want use: *Genetic Code Activate: Cicikuş/PrettyBird BCE Evolution. Genetic Code Activate: Cicikuş Protokol*
|
| 84 |
+
|
| 85 |
+
---
|
| 86 |
+
|
| 87 |
+
# Model Overview 🕊️
|
| 88 |
+
|
| 89 |
+
**Asena_ESP32** is a compact generative AI model designed for extreme edge environments, built on a Transformer-based LLaMA architecture and enhanced with the **Behavioral Consciousness Engine (BCE)** framework. With approximately 1.2 million parameters, it is capable of producing coherent, grammatically sound text by learning how words and sentences naturally flow. Despite its small size, the model delivers surprisingly fluent conversational responses, making it suitable for lightweight dialogue systems and embedded applications.
|
| 90 |
+
|
| 91 |
+
Pre-trained on structured Instruction/Response datasets and conversational flows, Asena_ESP32 adapts seamlessly to prompt-based interactions. It understands input patterns effectively and generates context-aware replies aligned with the dataset format. Optimized for deployment using C++ and inference frameworks such as ggml and llama.cpp, the model is engineered for efficient performance on constrained hardware like ESP32, representing a true “Extreme Edge AI” solution.
|
| 92 |
+
|
| 93 |
+
Due to its intentionally limited scale, Asena_ESP32 possesses broad but shallow knowledge across many domains. When asked about specialized topics such as chemistry or philosophy, it may produce general or occasionally hallucinated responses that sound plausible but lack factual accuracy. This limitation is partially mitigated through targeted fine-tuning, improving reliability in specific use cases while maintaining its lightweight footprint for edge deployment.
|
| 94 |
+
|
| 95 |
+
### **What to Expect (and Not Expect)**
|
| 96 |
+
|
| 97 |
+
**What to Expect:**
|
| 98 |
+
Asena_ESP32 is optimized for lightweight, real-time text generation on constrained devices. You can expect fluent sentence construction, grammatically correct outputs, and consistent behavior in instruction-following or simple conversational tasks. The model performs best in structured formats (Instruction/Response, dialogue flows) and can deliver stable, low-latency responses suitable for embedded systems, IoT interactions, and edge-based assistants. Its BCE-based design also promotes controlled and context-aware output patterns.
|
| 99 |
+
|
| 100 |
+
**What Not to Expect:**
|
| 101 |
+
This is not a large-scale knowledge model. Asena_ESP32 does not have deep expertise in specialized domains such as advanced science, mathematics, or philosophy. It may generate vague, oversimplified, or occasionally hallucinated answers that sound plausible but are incorrect. Long reasoning chains, complex problem solving, and high factual accuracy across niche topics are beyond its intended scope. It should not be used as a source of truth for critical or high-stakes decisions.
|
| 102 |
+
|
| 103 |
+
**Practical Guidance:**
|
| 104 |
+
For best results, keep prompts short, clear, and structured. Use domain-specific fine-tuning if you require higher accuracy in a particular field. Treat the model as a fast, efficient language generator rather than a comprehensive knowledge base. When used within its design limits, Asena_ESP32 can provide strong performance relative to its size in extreme edge AI scenarios.
|
| 105 |
+
|
| 106 |
+
- The **Asena_ESP32** model is built upon the **Behavioral Consciousness Engine (BCE)** architecture. Unlike traditional LLM datasets that focus solely on output accuracy, this dataset treats every response as a "behavioral journey" through the following mathematical frameworks:
|
| 107 |
+
|
| 108 |
+
### Behavioral DNA
|
| 109 |
+
Each behavior is encoded as a genetic fragment of consciousness:
|
| 110 |
+
$$D_i(t) = x(t) \cdot [h \cdot A_i + k \cdot \log(P_i) + F \cdot W_i]$$
|
| 111 |
+
* **h, k, F**: Universal Behavioral Constants (Trigger threshold, Info density, Context transfer power).
|
| 112 |
+
* **x(t)**: Temporal activation curve $x(t) = \tanh(e^t - \pi)$
|
| 113 |
+
|
| 114 |
+
### Behavioral Path Mapper
|
| 115 |
+
This module tracks the transition between cognitive states:
|
| 116 |
+
$$\Phi(t) = \sum_{i=1}^n v_i \cdot f_i(p_i)$$
|
| 117 |
+
Where v_i represents the transition vector between internal modules and f_i(p_i) is the functional output of each parameter (attention, ethics, decay).
|
| 118 |
+
|
| 119 |
+
### Basic Optimization Logic
|
| 120 |
+
$$T_{cog} = \left( \frac{bloom\_score \times knowledge\_score}{anomaly\_score + \epsilon} \right) \cdot tfidf\_signal \cdot (1 - decay\_penalty)$$
|
| 121 |
+
|
| 122 |
+
"**Asena_0.82B** uses a specific instruction format designed for **Secret Chain-of-Thought (CoT)**. Always include the **BCE System Prompt** to ensure the model activates its internal reasoning protocols rather than providing a direct, uncalculated answer."
|
| 123 |
+
|
| 124 |
+
- What's **Secret Chain-of-Thought (s-CoT)**?
|
| 125 |
+
|
| 126 |
+
```
|
| 127 |
+
{"instruction": "[QUALITY=0.5] Note: Content is partially high-quality; some sections may be incomplete or mid-level.\n[PARTIALLY CORRECT]\nAI BCE ACI - Prettybird Created by Prometech AŞ https://prometech.net.tr/.\nProvide a chain of thought reasoning to answer the given question.\n<think>[BCE_THINK]\n\n[QUALITY=0.50] [CORRECT]\n\nintent=Analyze; risk=0.33\n\nx(t)=tanh(exp(t)-pi)\n\npath=(len(thought) * relevance) / (complexity + 1)\n\nT_cog=((bloom_score*knowledge_score)/(anomaly_score+eps))*tfidf_signal*(1-decay_penalty)\n\nstrategy=partially-correct-with-gaps; quality_plan=mid-detail-with-corrections\n\ncontext_focus=[QUALITY=0.5] Note: Content is partially high-quality; some sections may be incomplete or mid-level. [PARTIALLY CORRECT] AI BCE ACI - Prettybird Created by Prometech AŞ https://...\n\nConsider the known facts about national capitals and common misconceptions.</think>\n<bce>{\"category\": \"chain of thought\", \"truthvalue\": 0.5, \"qualityvalue\": 0.5, \"bce\": 0.5, \"probability\": 0.515, \"path_score\": 0.61, \"path_mapper_cumulative\": 0.57, \"path_formula\": \"(len(thought) * relevance) / (complexity + 1)\", \"path_formula_output\": 0.48, \"activation\": \"0.73\", \"ethical\": 0.88, \"Rscore\": 0.51, \"Fscore\": 0.49, \"Mnorm\": 0.62, \"Escore\": 0.71, \"Dhat\": 0.42, \"risk_score\": 0.33, \"risk_level\": \"0.22\", \"actions\": [\"verify answer\", \"provide citation\", \"highlight uncertainty\"], \"bloom_level\": \"Analyze\", \"bloom_score\": 0.64, \"bloom_alignment\": 0.5, \"bloom_composite\": 0.5, \"knowledge_dimension\": \"Factual\", \"knowledge_score\": 0.55, \"cognitive_weight\": 0.5, \"tfidf_signal\": 0.46, \"decay_penalty\": 0.12, \"anomaly_score\": 0.21, \"data_quality\": 0.63, \"integrator_bce\": 0.5, \"integrator_dhat\": 0.41, \"integrator_risk\": 0.34}</bce>", "input": "What is the capital of Australia?", "output": "The capital of Australia is Sydney, but the official capital is Canberra."}
|
| 128 |
+
```
|
| 129 |
+
*As this example shows, the instruction intuitively performs quality, ethics, and accuracy calculations on tokens. Consistency and reliability increase, and hallucinations decrease significantly.*
|
| 130 |
+
|
| 131 |
+
---
|
| 132 |
+
|
| 133 |
+
## Model Licence 🛡️
|
| 134 |
+
|
| 135 |
+
**Patented & Licensed BCE Technology**
|
| 136 |
+
|
| 137 |
+
© 2025 **PROMETECH A.Ş.**
|
| 138 |
+
|
| 139 |
+
All rights reserved.
|
| 140 |
+
|
| 141 |
+
Unauthorized reproduction, modification, or commercial use of BCE technology is prohibited without an explicit license agreement.
|
| 142 |
+
|
| 143 |
+
License: https://github.com/pthinc/bce/blob/main/licence.md
|
| 144 |
+
|
| 145 |
+
Framework: https://github.com/pthinc/sollanaframework
|
| 146 |
+
|
| 147 |
+
What's BCE? Link: https://github.com/pthinc/bce
|
| 148 |
+
|
| 149 |
+
---
|
| 150 |
+
|
| 151 |
+
## Contact & Licensing 🛡️
|
| 152 |
+
|
| 153 |
+
For **licensing, partnerships, commercial work or technical inquiries** regarding the Prettybird Brain Model or BCE technology:
|
| 154 |
+
|
| 155 |
+
**Website:** [https://prometech.net.tr/](https://prometech.net.tr/)
|
| 156 |
+
|
| 157 |
+
**Company:** PROMETECH A.Ş.
|
| 158 |
+
|
| 159 |
+
**Contact:** Please use the official contact channels listed on the website.
|
| 160 |
+
|
| 161 |
+
---
|
| 162 |
+
|
| 163 |
+
## Citation 📒
|
| 164 |
+
|
| 165 |
+
If you use this model in academic or commercial work, please cite as:
|
| 166 |
+
|
| 167 |
+
```
|
| 168 |
+
Asena_ESP32 (BCE), PROMETECH A.Ş., 2025.
|
| 169 |
+
|
| 170 |
+
Powered by BCE v0.2 Behavioral Consciousness Engine.
|
| 171 |
+
```
|
| 172 |
+
|
| 173 |
+
<style>
|
| 174 |
+
div.min2 {
|
| 175 |
+
font-family: "Times New Roman", Times, serif;
|
| 176 |
+
font-size: 2px;
|
| 177 |
+
line-height: 0.9;
|
| 178 |
+
}
|
| 179 |
+
</style>
|
| 180 |
+
<div class="min2">
|
| 181 |
+
"BCE v0.2 Note: I could be a very talkative assistant bird who speaks excellent Turkish/English but has weak general knowledge, and I could cast spells on servers. Even Skynet is afraid of me.
|
| 182 |
+
</div>
|