Text Generation
Transformers
TensorBoard
Safetensors
PEFT
llama
Trained with AutoTrain
text-generation-inference
llama-3
finance
crypto
agents
workflow-automation
soul-ai
conversational
Instructions to use shafire/CryptoAI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use shafire/CryptoAI with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="shafire/CryptoAI") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("shafire/CryptoAI") model = AutoModelForCausalLM.from_pretrained("shafire/CryptoAI") 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]:])) - PEFT
How to use shafire/CryptoAI with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use shafire/CryptoAI with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "shafire/CryptoAI" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "shafire/CryptoAI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/shafire/CryptoAI
- SGLang
How to use shafire/CryptoAI 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 "shafire/CryptoAI" \ --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": "shafire/CryptoAI", "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 "shafire/CryptoAI" \ --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": "shafire/CryptoAI", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use shafire/CryptoAI with Docker Model Runner:
docker model run hf.co/shafire/CryptoAI
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,13 +18,13 @@ widget:
|
|
| 18 |
- text: "What kind of automation can LLMs perform?"
|
| 19 |
---
|
| 20 |
|
| 21 |
-
# 🧠
|
| 22 |
|
| 23 |
-
**
|
| 24 |
|
| 25 |
---
|
| 26 |
|
| 27 |
-

|
| 28 |
|
| 29 |
## 📂 Dataset Summary
|
| 30 |
|
|
|
|
| 94 |
|
| 95 |
Optimized For: Conversational logic, chain-of-thought, and agent workflow simulation
|
| 96 |
|
| 97 |
+
🔗 CryptoAI Ecosystem Integration
|
| 98 |
+
iCryptoAIs designed to plug into SoulAI’s decentralized agent network:
|
| 99 |
|
| 100 |
Deploy agents via Agent Forge
|
| 101 |
|
|
|
|
| 131 |
📞 Get In Touch
|
| 132 |
Want to build agents with Soul AI or license the model?
|
| 133 |
|
| 134 |
+
|
|
|
|
|
|
|
| 135 |
|
| 136 |
💥 Powering the Next Wave of Agentic Intelligence
|
| 137 |
+
isn'CryptoAIt just a chatbot—it's a programmable foundation for monetized, on-chain agent workflows. Train once, deploy forever.
|