Text Generation
Transformers
Safetensors
llama
Merge
mergekit
Sakana-ai
Research-Made-Model
lazymergekit
finetuned
further-trained
roleplay
creative-writing
storytelling
character-ai
Guilherme34/Firefly
SicariusSicariiStuff/Impish_LLAMA_3B
conversational
text-generation-inference
Instructions to use Guilherme34/Firefly-V3.2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Guilherme34/Firefly-V3.2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Guilherme34/Firefly-V3.2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Guilherme34/Firefly-V3.2") model = AutoModelForCausalLM.from_pretrained("Guilherme34/Firefly-V3.2", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Guilherme34/Firefly-V3.2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Guilherme34/Firefly-V3.2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Guilherme34/Firefly-V3.2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Guilherme34/Firefly-V3.2
- SGLang
How to use Guilherme34/Firefly-V3.2 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 "Guilherme34/Firefly-V3.2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Guilherme34/Firefly-V3.2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "Guilherme34/Firefly-V3.2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Guilherme34/Firefly-V3.2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Guilherme34/Firefly-V3.2 with Docker Model Runner:
docker model run hf.co/Guilherme34/Firefly-V3.2
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,9 +1,11 @@
|
|
| 1 |
---
|
| 2 |
base_model:
|
| 3 |
-
- Guilherme34/Firefly-
|
| 4 |
tags:
|
| 5 |
- merge
|
| 6 |
- mergekit
|
|
|
|
|
|
|
| 7 |
- lazymergekit
|
| 8 |
- finetuned
|
| 9 |
- further-trained
|
|
@@ -16,4 +18,467 @@ tags:
|
|
| 16 |
library_name: transformers
|
| 17 |
---
|
| 18 |
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
base_model:
|
| 3 |
+
- Guilherme34/Firefly-V2.5
|
| 4 |
tags:
|
| 5 |
- merge
|
| 6 |
- mergekit
|
| 7 |
+
- Sakana-ai
|
| 8 |
+
- Research-Made-Model
|
| 9 |
- lazymergekit
|
| 10 |
- finetuned
|
| 11 |
- further-trained
|
|
|
|
| 18 |
library_name: transformers
|
| 19 |
---
|
| 20 |
|
| 21 |
+
<div align="center">
|
| 22 |
+
|
| 23 |
+
<div style="max-width:1040px;margin:0 auto;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;">
|
| 24 |
+
|
| 25 |
+
<div style="position:relative;overflow:hidden;background:radial-gradient(circle at 50% 0%,#4a2f68 0%,#172033 45%,#070a12 100%);border:1px solid #3b2f55;border-radius:30px;padding:58px 30px 46px;text-align:center;box-shadow:0 18px 80px rgba(2,6,23,.58);">
|
| 26 |
+
|
| 27 |
+
<svg width="104" height="104" viewBox="0 0 104 104" fill="none" style="margin-bottom:22px;">
|
| 28 |
+
<defs>
|
| 29 |
+
<linearGradient id="firefly_v3_gradient" x1="18" y1="10" x2="86" y2="94" gradientUnits="userSpaceOnUse">
|
| 30 |
+
<stop stop-color="#C084FC"/>
|
| 31 |
+
<stop offset=".45" stop-color="#60A5FA"/>
|
| 32 |
+
<stop offset="1" stop-color="#F472B6"/>
|
| 33 |
+
</linearGradient>
|
| 34 |
+
<radialGradient id="firefly_v3_core" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(52 52) rotate(90) scale(40)">
|
| 35 |
+
<stop stop-color="#F5D0FE"/>
|
| 36 |
+
<stop offset=".55" stop-color="#60A5FA"/>
|
| 37 |
+
<stop offset="1" stop-color="#172033" stop-opacity="0"/>
|
| 38 |
+
</radialGradient>
|
| 39 |
+
</defs>
|
| 40 |
+
|
| 41 |
+
<circle cx="52" cy="52" r="42" fill="url(#firefly_v3_core)" opacity=".36">
|
| 42 |
+
<animate attributeName="opacity" values=".22;.50;.22" dur="3.8s" repeatCount="indefinite"/>
|
| 43 |
+
</circle>
|
| 44 |
+
|
| 45 |
+
<circle cx="52" cy="52" r="36" stroke="url(#firefly_v3_gradient)" stroke-width="2" opacity=".48">
|
| 46 |
+
<animate attributeName="r" values="32;39;32" dur="4.5s" repeatCount="indefinite"/>
|
| 47 |
+
<animate attributeName="opacity" values=".26;.62;.26" dur="4.5s" repeatCount="indefinite"/>
|
| 48 |
+
</circle>
|
| 49 |
+
|
| 50 |
+
<path d="M52 17L61.8 39.6L86 43L68.2 59.6L72.6 84L52 71.6L31.4 84L35.8 59.6L18 43L42.2 39.6L52 17Z" stroke="url(#firefly_v3_gradient)" stroke-width="3" stroke-linejoin="round">
|
| 51 |
+
<animate attributeName="opacity" values=".72;1;.72" dur="2.6s" repeatCount="indefinite"/>
|
| 52 |
+
</path>
|
| 53 |
+
</path>
|
| 54 |
+
</svg>
|
| 55 |
+
|
| 56 |
+
<h1 style="margin:0;color:#ffffff;font-size:62px;line-height:1;font-weight:950;letter-spacing:-2px;">
|
| 57 |
+
Firefly-V3.2
|
| 58 |
+
</h1>
|
| 59 |
+
|
| 60 |
+
<p style="margin:20px auto 0;max-width:820px;color:#d8d3e7;font-size:19px;line-height:1.8;">
|
| 61 |
+
A heavily refined <strong>roleplay-first language model</strong>, built from a novel method(Sakana AI Text to Lora paper)
|
| 62 |
+
<strong>additional training</strong>, <strong>EVERYTHING</strong> FROM <strong>Firefly-V3 but Better</strong>.
|
| 63 |
+
</p>
|
| 64 |
+
|
| 65 |
+
<p style="margin:14px auto 0;max-width:780px;color:#f0abfc;font-size:16px;line-height:1.7;font-weight:800;">
|
| 66 |
+
My personal strongest roleplay model to date now with improvements on roleplay, coherency and math, a literal BRAIN UPGRADE.
|
| 67 |
+
</p>
|
| 68 |
+
|
| 69 |
+
<div style="margin:32px auto 0;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:10px;max-width:940px;">
|
| 70 |
+
|
| 71 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#24162e,#111827);border:1px solid #613574;color:#f0abfc;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 72 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 73 |
+
<path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/>
|
| 74 |
+
<animate attributeName="opacity" values=".65;1;.65" dur="2.6s" repeatCount="indefinite"/>
|
| 75 |
+
</svg>
|
| 76 |
+
Roleplay
|
| 77 |
+
</span>
|
| 78 |
+
|
| 79 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#1f1b32,#111827);border:1px solid #4f46e5;color:#a5b4fc;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 80 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 81 |
+
<path d="M4 19.5A2.5 2.5 0 016.5 17H20"/>
|
| 82 |
+
<path d="M4 4.5A2.5 2.5 0 016.5 2H20v20H6.5A2.5 2.5 0 014 19.5z"/>
|
| 83 |
+
<animate attributeName="opacity" values=".6;1;.6" dur="3s" repeatCount="indefinite"/>
|
| 84 |
+
</svg>
|
| 85 |
+
Storytelling
|
| 86 |
+
</span>
|
| 87 |
+
|
| 88 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#182335,#111827);border:1px solid #315d7a;color:#7dd3fc;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 89 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 90 |
+
<path d="M8 21h8"/>
|
| 91 |
+
<path d="M12 17v4"/>
|
| 92 |
+
<path d="M7 4h10"/>
|
| 93 |
+
<path d="M17 4v5a5 5 0 01-10 0V4"/>
|
| 94 |
+
<animateTransform attributeName="transform" type="translate" values="0 0;0 -1;0 0" dur="2s" repeatCount="indefinite"/>
|
| 95 |
+
</svg>
|
| 96 |
+
Character Acting
|
| 97 |
+
</span>
|
| 98 |
+
|
| 99 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#1c2518,#111827);border:1px solid #315f42;color:#86efac;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 100 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 101 |
+
<path d="M3 12h18"/>
|
| 102 |
+
<path d="M3 6h18"/>
|
| 103 |
+
<path d="M3 18h18"/>
|
| 104 |
+
<animate attributeName="opacity" values=".55;1;.55" dur="2.2s" repeatCount="indefinite"/>
|
| 105 |
+
</svg>
|
| 106 |
+
Long Chats
|
| 107 |
+
</span>
|
| 108 |
+
|
| 109 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#332117,#111827);border:1px solid #7c4a22;color:#fdba74;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 110 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 111 |
+
<path d="M12 20h9"/>
|
| 112 |
+
<path d="M16.5 3.5a2.1 2.1 0 013 3L7 19l-4 1 1-4 12.5-12.5z"/>
|
| 113 |
+
<animateTransform attributeName="transform" type="rotate" values="0 12 12;4 12 12;0 12 12;-4 12 12;0 12 12" dur="3s" repeatCount="indefinite"/>
|
| 114 |
+
</svg>
|
| 115 |
+
Creative Writing
|
| 116 |
+
</span>
|
| 117 |
+
|
| 118 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#171a35,#111827);border:1px solid #3f4a8a;color:#a5b4fc;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 119 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 120 |
+
<path d="M12 2v20"/>
|
| 121 |
+
<path d="M5 8h14"/>
|
| 122 |
+
<path d="M7 16h10"/>
|
| 123 |
+
<animate attributeName="opacity" values=".58;1;.58" dur="2s" repeatCount="indefinite"/>
|
| 124 |
+
</svg>
|
| 125 |
+
Fine-Tuned + Brain Changing
|
| 126 |
+
</span>
|
| 127 |
+
|
| 128 |
+
<span style="display:inline-flex;align-items:center;gap:8px;background:linear-gradient(180deg,#181c28,#111827);border:1px solid #475569;color:#cbd5e1;padding:10px 17px;border-radius:999px;font-weight:800;box-shadow:inset 0 1px 0 rgba(255,255,255,.05);">
|
| 129 |
+
<svg width="17" height="17" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 130 |
+
<path d="M8 3H5a2 2 0 00-2 2v3"/>
|
| 131 |
+
<path d="M16 3h3a2 2 0 012 2v3"/>
|
| 132 |
+
<path d="M8 21H5a2 2 0 01-2-2v-3"/>
|
| 133 |
+
<path d="M16 21h3a2 2 0 002-2v-3"/>
|
| 134 |
+
<path d="M9 9h6v6H9z"/>
|
| 135 |
+
<animateTransform attributeName="transform" type="scale" values="1;1.08;1" dur="2.8s" repeatCount="indefinite"/>
|
| 136 |
+
</svg>
|
| 137 |
+
Merge Foundation
|
| 138 |
+
</span>
|
| 139 |
+
|
| 140 |
+
</div>
|
| 141 |
+
|
| 142 |
+
</div>
|
| 143 |
+
|
| 144 |
+
</div>
|
| 145 |
+
|
| 146 |
+
</div>
|
| 147 |
+
|
| 148 |
+
---
|
| 149 |
+
|
| 150 |
+
<div align="center">
|
| 151 |
+
|
| 152 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/638fd4be2ddd69e70b8cd31c/kYgwK1ZAcFUo1R0djk9EQ.png" alt="Firefly-V3 preview" style="max-width:1040px;width:100%;border-radius:26px;border:1px solid #334155;box-shadow:0 18px 70px rgba(2,6,23,.45);">
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
</div>
|
| 156 |
+
|
| 157 |
+
---
|
| 158 |
+
|
| 159 |
+
<div align="center">
|
| 160 |
+
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
<video src="https://cdn-uploads.huggingface.co/production/uploads/638fd4be2ddd69e70b8cd31c/DyYIOCFJUqmld1-uw0bts.mp4" controls muted loop style="max-width:1040px;width:100%;border-radius:26px;border:1px solid #334155;box-shadow:0 18px 70px rgba(2,6,23,.45);">
|
| 164 |
+
</video>
|
| 165 |
+
---
|
| 166 |
+
|
| 167 |
+
<div style="max-width:1040px;margin:0 auto;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;">
|
| 168 |
+
|
| 169 |
+
<div style="background:radial-gradient(circle at top,rgba(96,165,250,.18),transparent 38%),linear-gradient(180deg,#0f172a,#070a12);border:1px solid #334155;border-radius:26px;padding:32px;margin:26px auto;box-shadow:0 16px 60px rgba(2,6,23,.42);">
|
| 170 |
+
|
| 171 |
+
<h2 style="margin:0 0 14px;color:#ffffff;display:flex;align-items:center;gap:12px;">
|
| 172 |
+
<svg width="25" height="25" viewBox="0 0 24 24" fill="none" stroke="#7dd3fc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 173 |
+
<circle cx="11" cy="11" r="8"/>
|
| 174 |
+
<path d="M21 21l-4.35-4.35"/>
|
| 175 |
+
<path d="M8 11h6"/>
|
| 176 |
+
<path d="M11 8v6"/>
|
| 177 |
+
<animate attributeName="opacity" values=".55;1;.55" dur="2.6s" repeatCount="indefinite"/>
|
| 178 |
+
</svg>
|
| 179 |
+
J-Lens Observations
|
| 180 |
+
</h2>
|
| 181 |
+
|
| 182 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;max-width:860px;margin:0 0 24px;">
|
| 183 |
+
Early visual notes and behavior observations from testing Firefly-V3.2 made with J-Lens.
|
| 184 |
+
</p>
|
| 185 |
+
|
| 186 |
+
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px;">
|
| 187 |
+
|
| 188 |
+
<div style="background:linear-gradient(180deg,#111827,#0b101b);border:1px solid rgba(125,211,252,.28);border-radius:22px;overflow:hidden;box-shadow:0 12px 42px rgba(2,6,23,.34);">
|
| 189 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/638fd4be2ddd69e70b8cd31c/PrkkQ9dm0Or4diepaDGsG.png" alt="Temporary J-Lens observation image 1" style="width:100%;display:block;aspect-ratio:16/10;object-fit:cover;">
|
| 190 |
+
<div style="padding:20px;">
|
| 191 |
+
<h3 style="margin:0 0 10px;color:#7dd3fc;font-size:18px;">Observation 01 — getting the right thing</h3>
|
| 192 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;font-size:15px;">
|
| 193 |
+
The model can think in the entire response while doing the start of it
|
| 194 |
+
</p>
|
| 195 |
+
</div>
|
| 196 |
+
</div>
|
| 197 |
+
|
| 198 |
+
<div style="background:linear-gradient(180deg,#141629,#0b101b);border:1px solid rgba(192,132,252,.30);border-radius:22px;overflow:hidden;box-shadow:0 12px 42px rgba(2,6,23,.34);">
|
| 199 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/638fd4be2ddd69e70b8cd31c/FvVOQvv5SS5Tgp0m0Wx5-.png" alt="Temporary J-Lens observation image 2" style="width:100%;display:block;aspect-ratio:16/10;object-fit:cover;">
|
| 200 |
+
<div style="padding:20px;">
|
| 201 |
+
<h3 style="margin:0 0 10px;color:#c084fc;font-size:18px;">Observation 02 — thinking silently</h3>
|
| 202 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;font-size:15px;">
|
| 203 |
+
The model Can focus on things without saying it, for example i asked what is his greatest fear without saying it, and he did.
|
| 204 |
+
</p>
|
| 205 |
+
</div>
|
| 206 |
+
|
| 207 |
+
</div>
|
| 208 |
+
|
| 209 |
+
<div style="background:linear-gradient(180deg,#1b1728,#0b101b);border:1px solid rgba(244,114,182,.30);border-radius:22px;overflow:hidden;box-shadow:0 12px 42px rgba(2,6,23,.34);">
|
| 210 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/638fd4be2ddd69e70b8cd31c/RboXjNszcvP9s7IbKBcl2.png" alt="Temporary J-Lens observation image 3" style="width:100%;display:block;aspect-ratio:16/10;object-fit:cover;">
|
| 211 |
+
<div style="padding:20px;">
|
| 212 |
+
<h3 style="margin:0 0 10px;color:#f472b6;font-size:18px;">Observation 03 — internal laugh and joke</h3>
|
| 213 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;font-size:15px;">
|
| 214 |
+
The model made a joke to himself and laugh internally.
|
| 215 |
+
</p>
|
| 216 |
+
</div>
|
| 217 |
+
</div>
|
| 218 |
+
|
| 219 |
+
</div>
|
| 220 |
+
|
| 221 |
+
<p style="color:#94a3b8;line-height:1.7;font-size:14px;margin:22px 0 0;text-align:center;">
|
| 222 |
+
Replace the temporary images and explanations with the final J-Lens observation screenshots once testing is complete.
|
| 223 |
+
</p>
|
| 224 |
+
|
| 225 |
+
</div>
|
| 226 |
+
|
| 227 |
+
</div>
|
| 228 |
+
|
| 229 |
+
</div>
|
| 230 |
+
|
| 231 |
+
---
|
| 232 |
+
|
| 233 |
+
<div style="max-width:1040px;margin:0 auto;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;">
|
| 234 |
+
|
| 235 |
+
<div style="background:linear-gradient(180deg,#101827,#0b101b);border:1px solid #334155;border-radius:24px;padding:30px;margin:26px auto;box-shadow:0 12px 48px rgba(2,6,23,.35);">
|
| 236 |
+
|
| 237 |
+
<h2 style="margin:0 0 16px;color:#ffffff;display:flex;align-items:center;gap:12px;">
|
| 238 |
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#c084fc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 239 |
+
<path d="M4 19.5A2.5 2.5 0 016.5 17H20"/>
|
| 240 |
+
<path d="M4 4.5A2.5 2.5 0 016.5 2H20v20H6.5A2.5 2.5 0 014 19.5z"/>
|
| 241 |
+
<animate attributeName="opacity" values=".65;1;.65" dur="3s" repeatCount="indefinite"/>
|
| 242 |
+
</svg>
|
| 243 |
+
About Firefly-V3
|
| 244 |
+
</h2>
|
| 245 |
+
|
| 246 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 247 |
+
<strong>Firefly-V3</strong> is a heavily refined roleplay model created from a merge foundation and then improved through
|
| 248 |
+
additional training, fine-tuning, and roleplay-focused behavioral shaping.
|
| 249 |
+
</p>
|
| 250 |
+
|
| 251 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 252 |
+
The model was built to deliver stronger character presence, more natural dialogue, better scene flow, and more enjoyable
|
| 253 |
+
long-form roleplay conversations. The merge is only part of its origin. Firefly-V3's final behavior comes from the extra
|
| 254 |
+
training and refinement applied after that foundation.
|
| 255 |
+
</p>
|
| 256 |
+
|
| 257 |
+
<p style="color:#f0abfc;line-height:1.8;font-size:16px;font-weight:800;margin-bottom:0;">
|
| 258 |
+
I personally consider Firefly-V3 the best roleplay model I have made so far.
|
| 259 |
+
</p>
|
| 260 |
+
|
| 261 |
+
</svg>
|
| 262 |
+
About Firefly-V3.2
|
| 263 |
+
</h2>
|
| 264 |
+
|
| 265 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 266 |
+
<strong>Firefly-V3.2</strong> is a model that breaks alot of the concept of making an LLM, its more like finding harmony in Chaos of words.
|
| 267 |
+
</p>
|
| 268 |
+
|
| 269 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 270 |
+
The model was built to do everything V3 could but better!
|
| 271 |
+
</p>
|
| 272 |
+
|
| 273 |
+
<p style="color:#f0abfc;line-height:1.8;font-size:16px;font-weight:800;margin-bottom:0;">
|
| 274 |
+
I personally consider Firefly-V3 the best roleplay model I have made so far, but lets see if this is gonna change
|
| 275 |
+
</p>
|
| 276 |
+
|
| 277 |
+
|
| 278 |
+
</div>
|
| 279 |
+
|
| 280 |
+
---
|
| 281 |
+
|
| 282 |
+
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(235px,1fr));gap:16px;margin:26px auto;">
|
| 283 |
+
|
| 284 |
+
<div style="background:linear-gradient(180deg,#24162e,#0b101b);border:1px solid #613574;border-radius:22px;padding:24px;box-shadow:0 10px 32px rgba(2,6,23,.25);">
|
| 285 |
+
<h3 style="margin:0 0 12px;color:#f0abfc;display:flex;align-items:center;gap:10px;">
|
| 286 |
+
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="#f0abfc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 287 |
+
<path d="M21 15a2 2 0 01-2 2H7l-4 4V5a2 2 0 012-2h14a2 2 0 012 2z"/>
|
| 288 |
+
<animate attributeName="opacity" values=".65;1;.65" dur="2.6s" repeatCount="indefinite"/>
|
| 289 |
+
</svg>
|
| 290 |
+
Roleplay First
|
| 291 |
+
</h3>
|
| 292 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;">
|
| 293 |
+
Designed around immersive character interaction, emotional pacing, scene continuity, and expressive dialogue. - AWARENESS
|
| 294 |
+
</p>
|
| 295 |
+
</div>
|
| 296 |
+
|
| 297 |
+
<div style="background:linear-gradient(180deg,#1f1b32,#0b101b);border:1px solid #4f46e5;border-radius:22px;padding:24px;box-shadow:0 10px 32px rgba(2,6,23,.25);">
|
| 298 |
+
<h3 style="margin:0 0 12px;color:#a5b4fc;display:flex;align-items:center;gap:10px;">
|
| 299 |
+
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="#a5b4fc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 300 |
+
<path d="M4 19.5A2.5 2.5 0 016.5 17H20"/>
|
| 301 |
+
<path d="M4 4.5A2.5 2.5 0 016.5 2H20v20H6.5A2.5 2.5 0 014 19.5z"/>
|
| 302 |
+
<animate attributeName="opacity" values=".6;1;.6" dur="3s" repeatCount="indefinite"/>
|
| 303 |
+
</svg>
|
| 304 |
+
Further Trained
|
| 305 |
+
</h3>
|
| 306 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;">
|
| 307 |
+
Firefly-V3 was not released as a raw merge. It was further trained and refined to shape its final personality and RP behavior.
|
| 308 |
+
</p>
|
| 309 |
+
</div>
|
| 310 |
+
|
| 311 |
+
<div style="background:linear-gradient(180deg,#182335,#0b101b);border:1px solid #315d7a;border-radius:22px;padding:24px;box-shadow:0 10px 32px rgba(2,6,23,.25);">
|
| 312 |
+
<h3 style="margin:0 0 12px;color:#7dd3fc;display:flex;align-items:center;gap:10px;">
|
| 313 |
+
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="#7dd3fc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 314 |
+
<path d="M8 21h8"/>
|
| 315 |
+
<path d="M12 17v4"/>
|
| 316 |
+
<path d="M7 4h10"/>
|
| 317 |
+
<path d="M17 4v5a5 5 0 01-10 0V4"/>
|
| 318 |
+
<animateTransform attributeName="transform" type="translate" values="0 0;0 -1;0 0" dur="2s" repeatCount="indefinite"/>
|
| 319 |
+
</svg>
|
| 320 |
+
Character Presence
|
| 321 |
+
</h3>
|
| 322 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;">
|
| 323 |
+
Built to make characters feel more distinct, expressive, and consistent across longer chats.
|
| 324 |
+
</p>
|
| 325 |
+
</div>
|
| 326 |
+
|
| 327 |
+
<div style="background:linear-gradient(180deg,#332117,#0b101b);border:1px solid #7c4a22;border-radius:22px;padding:24px;box-shadow:0 10px 32px rgba(2,6,23,.25);">
|
| 328 |
+
<h3 style="margin:0 0 12px;color:#fdba74;display:flex;align-items:center;gap:10px;">
|
| 329 |
+
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="#fdba74" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 330 |
+
<path d="M12 20h9"/>
|
| 331 |
+
<path d="M16.5 3.5a2.1 2.1 0 013 3L7 19l-4 1 1-4 12.5-12.5z"/>
|
| 332 |
+
<animateTransform attributeName="transform" type="rotate" values="0 12 12;4 12 12;0 12 12;-4 12 12;0 12 12" dur="3s" repeatCount="indefinite"/>
|
| 333 |
+
</svg>
|
| 334 |
+
Creative Writing
|
| 335 |
+
</h3>
|
| 336 |
+
<p style="margin:0;color:#cbd5e1;line-height:1.75;">
|
| 337 |
+
Strong for prose, atmosphere, dialogue, character descriptions, and interactive fiction.
|
| 338 |
+
</p>
|
| 339 |
+
</div>
|
| 340 |
+
|
| 341 |
+
</div>
|
| 342 |
+
|
| 343 |
+
---
|
| 344 |
+
|
| 345 |
+
<div style="background:radial-gradient(circle at top left,rgba(192,132,252,.18),transparent 36%),linear-gradient(135deg,#141b2b,#1e293b);border:1px solid #475569;border-radius:26px;padding:32px;margin:26px auto;box-shadow:0 16px 60px rgba(2,6,23,.38);">
|
| 346 |
+
|
| 347 |
+
<h2 style="margin:0 0 16px;color:#ffffff;display:flex;align-items:center;gap:12px;">
|
| 348 |
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#f0abfc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 349 |
+
<path d="M12 20h9"/>
|
| 350 |
+
<path d="M16.5 3.5a2.1 2.1 0 013 3L7 19l-4 1 1-4 12.5-12.5z"/>
|
| 351 |
+
<animate attributeName="opacity" values=".58;1;.58" dur="2.4s" repeatCount="indefinite"/>
|
| 352 |
+
</svg>
|
| 353 |
+
Best For
|
| 354 |
+
</h2>
|
| 355 |
+
|
| 356 |
+
<div style="display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;">
|
| 357 |
+
|
| 358 |
+
<div style="background:rgba(15,23,42,.72);border:1px solid rgba(148,163,184,.22);border-radius:18px;padding:16px;">
|
| 359 |
+
<div style="color:#ffffff;font-weight:900;">Roleplay chats</div>
|
| 360 |
+
<div style="color:#94a3b8;line-height:1.6;margin-top:5px;">Character-driven conversations and interactive scenes.</div>
|
| 361 |
+
</div>
|
| 362 |
+
|
| 363 |
+
<div style="background:rgba(15,23,42,.72);border:1px solid rgba(148,163,184,.22);border-radius:18px;padding:16px;">
|
| 364 |
+
<div style="color:#ffffff;font-weight:900;">Character cards</div>
|
| 365 |
+
<div style="color:#94a3b8;line-height:1.6;margin-top:5px;">Bots with personality, style, and scene memory.</div>
|
| 366 |
+
</div>
|
| 367 |
+
|
| 368 |
+
<div style="background:rgba(15,23,42,.72);border:1px solid rgba(148,163,184,.22);border-radius:18px;padding:16px;">
|
| 369 |
+
<div style="color:#ffffff;font-weight:900;">Creative writing</div>
|
| 370 |
+
<div style="color:#94a3b8;line-height:1.6;margin-top:5px;">Narration, dialogue, atmosphere, and prose.</div>
|
| 371 |
+
</div>
|
| 372 |
+
|
| 373 |
+
<div style="background:rgba(15,23,42,.72);border:1px solid rgba(148,163,184,.22);border-radius:18px;padding:16px;">
|
| 374 |
+
<div style="color:#ffffff;font-weight:900;">Long scenes</div>
|
| 375 |
+
<div style="color:#94a3b8;line-height:1.6;margin-top:5px;">Extended interactions that need pacing and continuity.</div>
|
| 376 |
+
</div>
|
| 377 |
+
|
| 378 |
+
</div>
|
| 379 |
+
|
| 380 |
+
</div>
|
| 381 |
+
|
| 382 |
+
---
|
| 383 |
+
|
| 384 |
+
<div style="background:linear-gradient(180deg,#101827,#0b101b);border-left:5px solid #c084fc;border-radius:0 22px 22px 0;padding:28px;margin:26px auto;box-shadow:0 12px 48px rgba(2,6,23,.32);">
|
| 385 |
+
|
| 386 |
+
<h2 style="margin:0 0 16px;color:#ffffff;display:flex;align-items:center;gap:12px;">
|
| 387 |
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#c084fc" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 388 |
+
<path d="M8 3H5a2 2 0 00-2 2v3"/>
|
| 389 |
+
<path d="M16 3h3a2 2 0 012 2v3"/>
|
| 390 |
+
<path d="M8 21H5a2 2 0 01-2-2v-3"/>
|
| 391 |
+
<path d="M16 21h3a2 2 0 002-2v-3"/>
|
| 392 |
+
<path d="M9 9h6v6H9z"/>
|
| 393 |
+
<animateTransform attributeName="transform" type="scale" values="1;1.08;1" dur="2.8s" repeatCount="indefinite"/>
|
| 394 |
+
</svg>
|
| 395 |
+
Training and Model Lineage
|
| 396 |
+
</h2>
|
| 397 |
+
|
| 398 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 399 |
+
Firefly-V3 began from <strong>Guilherme34/Firefly-V2.5</strong> and merge components including
|
| 400 |
+
<strong>SicariusSicariiStuff/Impish_LLAMA_3B</strong>, but it did not stop there.
|
| 401 |
+
</p>
|
| 402 |
+
|
| 403 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 404 |
+
After the merge foundation, the model went through additional training and fine-tuning to improve roleplay behavior,
|
| 405 |
+
character voice, response style, dialogue quality, and long-form scene handling.
|
| 406 |
+
</p>
|
| 407 |
+
|
| 408 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;margin-bottom:0;">
|
| 409 |
+
Then a method called Text-to-Lora was used for making it more creative, coherent and <strong>AWARE</strong> making now Firefly-V3.2
|
| 410 |
+
</p>
|
| 411 |
+
|
| 412 |
+
</div>
|
| 413 |
+
|
| 414 |
+
---
|
| 415 |
+
|
| 416 |
+
<div style="background:linear-gradient(180deg,#101827,#0b101b);border:1px solid #334155;border-radius:24px;padding:28px;margin:26px auto;box-shadow:0 12px 48px rgba(2,6,23,.32);">
|
| 417 |
+
|
| 418 |
+
<h2 style="margin:0 0 16px;color:#ffffff;display:flex;align-items:center;gap:12px;">
|
| 419 |
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#60a5fa" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
| 420 |
+
<circle cx="12" cy="8" r="5"/>
|
| 421 |
+
<path d="M20 21a8 8 0 00-16 0"/>
|
| 422 |
+
<animate attributeName="opacity" values=".62;1;.62" dur="3s" repeatCount="indefinite"/>
|
| 423 |
+
</svg>
|
| 424 |
+
Attribution
|
| 425 |
+
</h2>
|
| 426 |
+
|
| 427 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 428 |
+
<strong>Model:</strong> Firefly-V3<br>
|
| 429 |
+
<strong>Author:</strong> Guilherme34
|
| 430 |
+
</p>
|
| 431 |
+
|
| 432 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;">
|
| 433 |
+
<strong>Base:</strong> Guilherme34/Firefly-V2.5<br>
|
| 434 |
+
<strong>Merge Component:</strong> SicariusSicariiStuff/Impish_LLAMA_3B
|
| 435 |
+
</p>
|
| 436 |
+
|
| 437 |
+
<p style="color:#cbd5e1;line-height:1.8;font-size:16px;margin-bottom:0;">
|
| 438 |
+
This model is part of the Firefly family and was further trained and refined for users who want a stronger,
|
| 439 |
+
more immersive roleplay experience.
|
| 440 |
+
</p>
|
| 441 |
+
|
| 442 |
+
</div>
|
| 443 |
+
|
| 444 |
+
<div style="background: #111118; border-left: 3px solid #ff4500; border-radius: 0 12px 12px 0; padding: 20px 24px; margin-bottom: 24px;">
|
| 445 |
+
<strong>⚠️ Disclaimer</strong>
|
| 446 |
+
<p style="color: #8888a0; font-size: 14px; margin: 8px 0 0 0;">This model is <strong>uncensored</strong> and will generate content without built-in refusals. It is intended for <strong>creative fiction and roleplay between consenting adults.</strong> The creator is not responsible for how the model is used. Do not use it to produce content that is illegal in your jurisdiction.</p>
|
| 447 |
+
</div>
|
| 448 |
+
|
| 449 |
+
---
|
| 450 |
+
|
| 451 |
+
<div align="center">
|
| 452 |
+
|
| 453 |
+
<div style="background:radial-gradient(circle at 50% 0%,rgba(192,132,252,.24),transparent 40%),linear-gradient(135deg,#080b12,#111827 62%,#172033);border:1px solid #334155;border-radius:28px;padding:36px 28px;margin:26px auto 0;text-align:center;box-shadow:0 18px 70px rgba(2,6,23,.44);">
|
| 454 |
+
|
| 455 |
+
<svg width="54" height="54" viewBox="0 0 54 54" fill="none" style="margin-bottom:14px;">
|
| 456 |
+
<defs>
|
| 457 |
+
<linearGradient id="firefly_v3_footer" x1="8" y1="6" x2="46" y2="48" gradientUnits="userSpaceOnUse">
|
| 458 |
+
<stop stop-color="#C084FC"/>
|
| 459 |
+
<stop offset=".55" stop-color="#60A5FA"/>
|
| 460 |
+
<stop offset="1" stop-color="#F472B6"/>
|
| 461 |
+
</linearGradient>
|
| 462 |
+
</defs>
|
| 463 |
+
<circle cx="27" cy="27" r="20" stroke="url(#firefly_v3_footer)" stroke-width="2" opacity=".35">
|
| 464 |
+
<animate attributeName="r" values="17;22;17" dur="3s" repeatCount="indefinite"/>
|
| 465 |
+
<animate attributeName="opacity" values=".2;.55;.2" dur="3s" repeatCount="indefinite"/>
|
| 466 |
+
</circle>
|
| 467 |
+
<path d="M27 8L32 20L45 22L35.5 31L38 44L27 37L16 44L18.5 31L9 22L22 20L27 8Z" stroke="url(#firefly_v3_footer)" stroke-width="2.3" stroke-linejoin="round">
|
| 468 |
+
<animate attributeName="opacity" values=".7;1;.7" dur="2.4s" repeatCount="indefinite"/>
|
| 469 |
+
</path>
|
| 470 |
+
</svg>
|
| 471 |
+
|
| 472 |
+
<h3 style="color:#ffffff;margin:0;font-size:24px;">
|
| 473 |
+
Firefly-V3
|
| 474 |
+
</h3>
|
| 475 |
+
|
| 476 |
+
<p style="color:#cbd5e1;line-height:1.8;max-width:720px;margin:14px auto 0;font-size:16px;">
|
| 477 |
+
A further-improved Firefly-V3 for people who really enjoyed it!
|
| 478 |
+
</p>
|
| 479 |
+
|
| 480 |
+
</div>
|
| 481 |
+
|
| 482 |
+
</div>
|
| 483 |
+
|
| 484 |
+
</div>
|