File size: 3,881 Bytes
84b0060 633e5a8 84b0060 633e5a8 84b0060 633e5a8 84b0060 e938ab6 84b0060 0419ed9 84b0060 633e5a8 84b0060 3707d91 633e5a8 84b0060 633e5a8 7736a24 633e5a8 84b0060 633e5a8 84b0060 633e5a8 84b0060 633e5a8 84b0060 633e5a8 84b0060 3707d91 baa8f43 b561039 baa8f43 3707d91 e938ab6 0419ed9 3707d91 0419ed9 3707d91 e938ab6 3707d91 0419ed9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
---
tags:
- autotrain
- text-generation
- text-generation-inference
- peft
- llama-3
- finance
- crypto
- agents
- workflow-automation
- soul-ai
library_name: transformers
base_model: meta-llama/Llama-3.1-8B
license: other
widget:
- text: "Ask me something about AI agents or crypto."
- text: "What kind of automation can LLMs perform?"
---
# 🧠 CryptoAI — Llama 3.1 Fine-Tuned for Finance & Autonomous Agents
**CryptoAI** is a purpose-tuned LLM based on Meta's Llama 3.1–8B, trained on domain-specific data focused on **financial logic**, **LLM agent workflows**, and **automated task generation**. Designed to power on-chain AI agents, it's part of the broader CryptoAI ecosystem for monetized intelligence.
---
## 📂 Dataset Summary
This model was fine-tuned on over 10,000+ instruction-style samples simulating:
- Financial queries and tokenomics reasoning
- LLM-agent interaction patterns
- Crypto automation logic
- DeFi, trading signals, news interpretation
- Smart contract and API-triggered tasks
- Natural language prompts for dynamic workflow creation
The format follows a custom instruction-based structure optimized for reasoning tasks and agentic workflows—not just casual conversation.
---
See our Docs page for more info: docs.soulai.info
## 💻 Usage (via Transformers)
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model_path = "YOUR_HF_USERNAME/YOUR_MODEL_NAME"
tokenizer = AutoTokenizer.from_pretrained(model_path)
model = AutoModelForCausalLM.from_pretrained(
model_path,
device_map="auto",
torch_dtype="auto"
).eval()
messages = [{"role": "user", "content": "How do autonomous LLM agents work?"}]
input_ids = tokenizer.apply_chat_template(
conversation=messages,
tokenize=True,
add_generation_prompt=True,
return_tensors="pt"
)
output_ids = model.generate(input_ids.to("cuda"), max_new_tokens=256)
response = tokenizer.decode(output_ids[0][input_ids.shape[1]:], skip_special_tokens=True)
print(response)
---
```
🛠️ Hugging Face Inference API
Use it via API for quick tasks:
bash
Copy
Edit
curl https://api-inference.huggingface.co/models/YOUR_HF_USERNAME/YOUR_MODEL_NAME \
-X POST \
-d '{"inputs": "Tell me something about agent-based AI."}' \
-H "Authorization: Bearer YOUR_HF_TOKEN"
🧬 Model Details
Base Model: Meta-Llama-3.1–8B
Tuning Method: PEFT / LoRA
Training Platform: 🤗 AutoTrain
Optimized For: Conversational logic, chain-of-thought, and agent workflow simulation
🔗 CryptoAI Ecosystem Integration
CryptoAI is designed to plug into CryptoAI’s decentralized agent network:
Deploy agents via Agent Forge
Trigger smart contracts or APIs through LLM-generated logic
Earn revenue through tokenized usage fees in $SOUL
Run tasks autonomously while sharing fees with dataset, model, and node contributors
⚙️ Ideal Use Cases
Building conversational agent front-ends (chat, Discord, IVR)
Automating repetitive financial workflows
Simulating DeFi scenarios and logic
Teaching agents how to respond to vague, ambiguous tasks with structured outputs
Integrating GPT-like intelligence with programmable smart contract logic
🔒 License
This model is distributed under a restricted "other" license.
Use for commercial applications or LLM training requires permission.
The base Llama 3 license and Meta's terms still apply.
💡 Notes & Limitations
Output may vary depending on GPU, prompt phrasing, and context.
Not suitable for high-stakes financial decision-making out-of-the-box.
Use as a base agent layer with real-time validation or approval loops.
📞 Get In Touch
Want to build agents with CryptoAI or license the model?
💥 Powering the Next Wave of Agentic Intelligence
CryptoAI isn't just a chatbot—it's a programmable foundation for monetized, on-chain agent workflows. Train once, deploy forever. |