62 Downloads Updated 3 months ago
ollama run relational/roex
Updated 3 months ago
3 months ago
0a6c1d976792 · 4.7GB ·
Roex is a specialized coding assistant fine-tuned with an advanced system prompt for maximum technical precision and production-quality code generation.
Roex is an elite software engineering AI designed to deliver clean, maintainable, and production-ready code across all major programming languages and frameworks. Unlike generic models, Roex combines deep theoretical knowledge with practical, battle-tested solutions.
ollama pull relational/roex
ollama run relational/roex
# Build a REST API
ollama run relational/roex "Create a FastAPI REST API with JWT authentication"
# Debug code
ollama run relational/roex "Fix this Python code: [paste your code]"
# System design
ollama run relational/roex "Design a microservices architecture for an e-commerce platform"
# Code review
ollama run relational/roex "Review this code and suggest improvements: [paste code]"
import requests
response = requests.post('http://localhost:11434/api/generate',
json={
'model': 'relational/roex',
'prompt': 'Build a user authentication system with OAuth2',
'stream': False
})
print(response.json()['response'])
Add to your config.json:
{
"models": [
{
"title": "Roex",
"provider": "ollama",
"model": "relational/roex"
}
]
}
Prompt: “Create a Python function to validate email addresses with regex”
Roex Response:
import re
from typing import Optional
def validate_email(email: str) -> tuple[bool, Optional[str]]:
"""
Validates an email address using RFC 5322 compliant regex.
Args:
email: Email address to validate
Returns:
Tuple of (is_valid, error_message)
"""
if not email or not isinstance(email, str):
return False, "Email must be a non-empty string"
# RFC 5322 compliant pattern
pattern = r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
if re.match(pattern, email):
return True, None
return False, "Invalid email format"
Built by developers, for developers. Feedback and improvements welcome!
This model configuration is open source.
Made with ⚡ by Orbis Hosting
“Code that doesn’t just work—code that excels.”