Views
No views yet


RealRobot_chatbot_llm model, developed by fibonacciai.
RealRobot_chatbot_llm demonstrates the unique benefits of our specialization strategy:

llama.cpp.RealRobot_chatbot_llm is built upon the cutting-edge Gemma 3n architecture, a powerful, open model family from Google, optimized for size and speed.| Feature | Description |
|---|---|
| Base Architecture | Google's Gemma 3n (Optimized for size and speed) |
| Efficiency Focus | Designed for accelerated performance on local devices (CPU/Edge) |
| Model Size | Approx. 4 Billion Parameters (Quantized) |
| Fine-tuning Base | gemma-3n-e2b-it-bnb-4bit |
![]() |
fibonacciai/RealRobot-chatbot-v2
llama.cpp being the most common.llama.cpp (Terminal)llama.cpp:1git clone [https://github.com/ggerganov/llama.cpp](https://github.com/ggerganov/llama.cpp)
2cd llama.cpp
3make--hf-repo flag to automatically download the model file. Replace [YOUR_GGUF_FILENAME.gguf] with the actual filename (e.g., RealRobot_chatbot_llm-Q8_0.gguf).1./main --hf-repo fibonacciai/RealRobot_chatbot_llm \
2 --hf-file [YOUR_GGUF_FILENAME.gguf] \
3 -n 256 \
4 -p "<start_of_turn>user\nWhat are the main features of the RealRobot X1 model?<end_of_turn>\n<start_of_turn>model\n"llama-cpp-python (Python)pip install llama-cpp-python1from llama_cpp import Llama
2
3GGUF_FILE = "[YOUR_GGUF_FILENAME.gguf]"
4REPO_ID = "fibonacciai/RealRobot_chatbot_llm"
5
6llm = Llama.from_pretrained(
7 repo_id=REPO_ID,
8 filename=GGUF_FILE,
9 n_ctx=2048,
10 chat_format="gemma", # Use the gemma chat format
11 verbose=False
12)
13
14messages = [
15 {"role": "user", "content": "How do I troubleshoot error code X-404 on the platform?"},
16]
17
18response = llm.create_chat_completion(messages)
19print(response['choices'][0]['message']['content'])