This repository contains the Llama 3.3 8B Instruct model with thinking capabilities, fine-tuned for economic and financial analysis using Claude 4.5-Opus High Reasoning dataset.
Key Features:
Thinking Mode: Automatic activation for complex reasoning
Economic Focus: Specialized for financial analysis and market insights
128k Context: Extended context window for comprehensive analysis
Optimized: Fine-tuned with Unsloth for efficient inference
All model files are now located in the root directory for optimal compatibility:
├── config.json # Model configuration
├── generation_config.json # Generation parameters
├── tokenizer.json # Tokenizer vocabulary
├── tokenizer_config.json # Tokenizer configuration
├── special_tokens_map.json # Special tokens mapping
├── chat_template.jinja # Chat template
├── model.safetensors.index.json # Model index
├── model-00001-of-00004.safetensors # Model weights (part 1)
├── model-00002-of-00004.safetensors # Model weights (part 2)
├── model-00003-of-00004.safetensors # Model weights (part 3)
├── model-00004-of-00004.safetensors # Model weights (part 4)
├── reco.py # Model utilities
├── matrix-neo-reloaded-fight.gif # Visual asset
└── README.md # This file
Usage
Quick Start with Transformers
python
1from transformers import AutoTokenizer, AutoModelForCausalLM
23# Load model and tokenizer directly (no subfolder needed)4tokenizer = AutoTokenizer.from_pretrained("Gaston895/aegisconduct")5model = AutoModelForCausalLM.from_pretrained("Gaston895/aegisconduct")67# Generate response8inputs = tokenizer("Analyze the economic impact of inflation on consumer spending:", return_tensors="pt")9outputs = model.generate(**inputs, max_length=512, temperature=0.7)10response = tokenizer.decode(outputs[0], skip_special_tokens=True)11print(response)
Thinking Mode Activation
The model automatically activates thinking mode for complex reasoning:
python
1# These prompts will trigger thinking mode2prompts =[3"Think deeply: Analyze the economic implications of rising interest rates",4"Explain the financial impact of supply chain disruptions",5"Think through: What are the long-term effects of quantitative easing?"6]
Global Economics: International trade, currency analysis
Research: Academic-level economic reasoning and explanation
Example Outputs
The model provides detailed, step-by-step reasoning for complex economic questions, often showing its "thinking" process before delivering final answers.
Technical Notes
All model files are in the root directory for direct loading
Supports both instruct and thinking modes
No system prompt required (thinking tags self-generate)
Compatible with quantization (Q4KS, IQ3_M recommended minimum)
Optimized for inference with various backends (transformers, llama.cpp, etc.)