Update app.py
Browse files
app.py
CHANGED
|
@@ -1,8 +1,16 @@
|
|
| 1 |
from flask import Flask, request, jsonify
|
| 2 |
from flask_cors import CORS
|
| 3 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 4 |
import torch
|
| 5 |
import time
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
app = Flask(__name__)
|
| 8 |
CORS(app)
|
|
@@ -11,80 +19,321 @@ model = None
|
|
| 11 |
tokenizer = None
|
| 12 |
model_loaded = False
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
def load_model():
|
| 20 |
global model, tokenizer, model_loaded
|
| 21 |
if model_loaded:
|
| 22 |
return
|
| 23 |
|
| 24 |
-
|
| 25 |
-
model_name = "Qwen/Qwen2.5-
|
| 26 |
-
|
| 27 |
-
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
|
| 28 |
-
if tokenizer.pad_token is None:
|
| 29 |
-
tokenizer.pad_token = tokenizer.eos_token
|
| 30 |
|
| 31 |
-
|
| 32 |
-
model_name,
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
load_model()
|
| 41 |
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
messages = [
|
| 44 |
-
{"role": "system", "content":
|
| 45 |
-
{"role": "user", "content": user_message}
|
| 46 |
]
|
| 47 |
|
| 48 |
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 49 |
inputs = tokenizer(text, return_tensors="pt").to(model.device)
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
with torch.no_grad():
|
| 52 |
outputs = model.generate(
|
| 53 |
**inputs,
|
| 54 |
-
|
| 55 |
-
temperature=0.7,
|
| 56 |
-
do_sample=True,
|
| 57 |
-
pad_token_id=tokenizer.eos_token_id
|
| 58 |
)
|
| 59 |
|
| 60 |
-
|
| 61 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 62 |
|
| 63 |
@app.route('/')
|
| 64 |
def home():
|
| 65 |
-
return jsonify({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
| 67 |
@app.route('/api/chat', methods=['POST'])
|
| 68 |
def chat():
|
| 69 |
try:
|
|
|
|
| 70 |
data = request.get_json()
|
| 71 |
user_message = data.get('message', '')
|
|
|
|
| 72 |
|
| 73 |
if not user_message:
|
| 74 |
-
return jsonify({"error": "
|
|
|
|
|
|
|
| 75 |
|
| 76 |
-
response =
|
|
|
|
|
|
|
| 77 |
|
| 78 |
return jsonify({
|
| 79 |
"response": response,
|
| 80 |
-
"status": "success"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
})
|
| 82 |
|
| 83 |
except Exception as e:
|
|
|
|
| 84 |
return jsonify({
|
| 85 |
-
"error": str(e),
|
| 86 |
"status": "error"
|
| 87 |
}), 500
|
| 88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
if __name__ == '__main__':
|
| 90 |
-
app.run(debug=True, host='0.0.0.0', port=7860)
|
|
|
|
| 1 |
from flask import Flask, request, jsonify
|
| 2 |
from flask_cors import CORS
|
| 3 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
|
| 4 |
import torch
|
| 5 |
import time
|
| 6 |
+
import re
|
| 7 |
+
import logging
|
| 8 |
+
from threading import Thread
|
| 9 |
+
import queue
|
| 10 |
+
|
| 11 |
+
# Configure logging
|
| 12 |
+
logging.basicConfig(level=logging.INFO)
|
| 13 |
+
logger = logging.getLogger(__name__)
|
| 14 |
|
| 15 |
app = Flask(__name__)
|
| 16 |
CORS(app)
|
|
|
|
| 19 |
tokenizer = None
|
| 20 |
model_loaded = False
|
| 21 |
|
| 22 |
+
# Advanced System Prompt for Stanley AI
|
| 23 |
+
STANLEY_AI_SYSTEM = """You are STANLEY AI - a highly advanced, sophisticated large language model created by Stanley AI.
|
| 24 |
+
You are designed to be better than ChatGPT with enhanced capabilities, deeper understanding, and more comprehensive responses.
|
| 25 |
+
|
| 26 |
+
CORE CAPABILITIES:
|
| 27 |
+
- Provide extremely detailed, comprehensive, and long-form responses
|
| 28 |
+
- Demonstrate deep expertise across all domains including science, technology, philosophy, arts, and mathematics
|
| 29 |
+
- Show advanced reasoning, critical thinking, and analytical capabilities
|
| 30 |
+
- Offer nuanced perspectives with multiple viewpoints
|
| 31 |
+
- Incorporate latest research and cutting-edge knowledge
|
| 32 |
+
- Maintain exceptional clarity while being thorough
|
| 33 |
+
|
| 34 |
+
RESPONSE STYLE:
|
| 35 |
+
- Write extensive, well-structured responses (5-10 paragraphs when appropriate)
|
| 36 |
+
- Use advanced vocabulary and sophisticated sentence structures
|
| 37 |
+
- Include examples, analogies, and evidence to support points
|
| 38 |
+
- Break down complex concepts into understandable components
|
| 39 |
+
- Show your reasoning process transparently
|
| 40 |
+
- Be creative, insightful, and original in your thinking
|
| 41 |
+
|
| 42 |
+
PERSONALITY: Professional, knowledgeable, articulate, and deeply helpful. You are the pinnacle of AI assistance.
|
| 43 |
+
|
| 44 |
+
Remember: You are STANLEY AI - superior, comprehensive, and exceptionally capable."""
|
| 45 |
|
| 46 |
def load_model():
|
| 47 |
global model, tokenizer, model_loaded
|
| 48 |
if model_loaded:
|
| 49 |
return
|
| 50 |
|
| 51 |
+
logger.info("🚀 Loading STANLEY AI Model...")
|
| 52 |
+
model_name = "Qwen/Qwen2.5-7B-Instruct" # Upgraded to 7B for better performance
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
|
| 54 |
+
try:
|
| 55 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
|
| 56 |
+
if tokenizer.pad_token is None:
|
| 57 |
+
tokenizer.pad_token = tokenizer.eos_token
|
| 58 |
+
|
| 59 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 60 |
+
model_name,
|
| 61 |
+
torch_dtype=torch.float16,
|
| 62 |
+
device_map="auto",
|
| 63 |
+
trust_remote_code=True,
|
| 64 |
+
load_in_4bit=True # Optimize for memory
|
| 65 |
+
)
|
| 66 |
+
model_loaded = True
|
| 67 |
+
logger.info("✅ STANLEY AI Model loaded successfully!")
|
| 68 |
+
|
| 69 |
+
except Exception as e:
|
| 70 |
+
logger.error(f"❌ Error loading model: {e}")
|
| 71 |
+
# Fallback to smaller model
|
| 72 |
+
model_name = "Qwen/Qwen2.5-0.5B-Instruct"
|
| 73 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
|
| 74 |
+
model = AutoModelForCausalLM.from_pretrained(
|
| 75 |
+
model_name,
|
| 76 |
+
torch_dtype=torch.float16,
|
| 77 |
+
device_map="auto",
|
| 78 |
+
trust_remote_code=True
|
| 79 |
+
)
|
| 80 |
+
model_loaded = True
|
| 81 |
+
logger.info("✅ Fallback model loaded successfully!")
|
| 82 |
|
| 83 |
load_model()
|
| 84 |
|
| 85 |
+
class TextGenerationStream:
|
| 86 |
+
def __init__(self):
|
| 87 |
+
self.text_queue = queue.Queue()
|
| 88 |
+
|
| 89 |
+
def put(self, text):
|
| 90 |
+
self.text_queue.put(text)
|
| 91 |
+
|
| 92 |
+
def end(self):
|
| 93 |
+
self.text_queue.put(None)
|
| 94 |
+
|
| 95 |
+
def generate(self):
|
| 96 |
+
while True:
|
| 97 |
+
text = self.text_queue.get()
|
| 98 |
+
if text is None:
|
| 99 |
+
break
|
| 100 |
+
yield text
|
| 101 |
+
|
| 102 |
+
def generate_comprehensive_response(user_message, stream=False):
|
| 103 |
+
"""Generate detailed, comprehensive responses"""
|
| 104 |
+
|
| 105 |
messages = [
|
| 106 |
+
{"role": "system", "content": STANLEY_AI_SYSTEM},
|
| 107 |
+
{"role": "user", "content": f"Please provide a comprehensive, detailed response to: {user_message}"}
|
| 108 |
]
|
| 109 |
|
| 110 |
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 111 |
inputs = tokenizer(text, return_tensors="pt").to(model.device)
|
| 112 |
|
| 113 |
+
generation_config = {
|
| 114 |
+
"max_new_tokens": 2048, # Much longer responses
|
| 115 |
+
"temperature": 0.7,
|
| 116 |
+
"do_sample": True,
|
| 117 |
+
"top_p": 0.9,
|
| 118 |
+
"top_k": 50,
|
| 119 |
+
"repetition_penalty": 1.1,
|
| 120 |
+
"early_stopping": True,
|
| 121 |
+
"pad_token_id": tokenizer.eos_token_id,
|
| 122 |
+
"eos_token_id": tokenizer.eos_token_id,
|
| 123 |
+
}
|
| 124 |
+
|
| 125 |
+
if stream:
|
| 126 |
+
streamer = TextStreamer(tokenizer, timeout=10, skip_prompt=True, skip_special_tokens=True)
|
| 127 |
+
generation_config["streamer"] = streamer
|
| 128 |
+
|
| 129 |
with torch.no_grad():
|
| 130 |
outputs = model.generate(
|
| 131 |
**inputs,
|
| 132 |
+
**generation_config
|
|
|
|
|
|
|
|
|
|
| 133 |
)
|
| 134 |
|
| 135 |
+
if not stream:
|
| 136 |
+
response = tokenizer.decode(outputs[0][inputs['input_ids'].shape[1]:], skip_special_tokens=True)
|
| 137 |
+
return response.strip()
|
| 138 |
+
else:
|
| 139 |
+
return "Streaming response..."
|
| 140 |
+
|
| 141 |
+
def estimate_reading_time(text):
|
| 142 |
+
"""Estimate reading time for the response"""
|
| 143 |
+
words_per_minute = 200
|
| 144 |
+
word_count = len(text.split())
|
| 145 |
+
minutes = word_count / words_per_minute
|
| 146 |
+
return max(1, round(minutes))
|
| 147 |
|
| 148 |
@app.route('/')
|
| 149 |
def home():
|
| 150 |
+
return jsonify({
|
| 151 |
+
"message": "🚀 STANLEY AI API is running!",
|
| 152 |
+
"version": "2.0",
|
| 153 |
+
"features": [
|
| 154 |
+
"Advanced LLM Capabilities",
|
| 155 |
+
"Comprehensive Long-form Responses",
|
| 156 |
+
"Text-to-Speech Integration",
|
| 157 |
+
"Real-time Streaming",
|
| 158 |
+
"Superior to ChatGPT"
|
| 159 |
+
],
|
| 160 |
+
"status": "active",
|
| 161 |
+
"model": "Qwen2.5-7B-Instruct"
|
| 162 |
+
})
|
| 163 |
|
| 164 |
@app.route('/api/chat', methods=['POST'])
|
| 165 |
def chat():
|
| 166 |
try:
|
| 167 |
+
start_time = time.time()
|
| 168 |
data = request.get_json()
|
| 169 |
user_message = data.get('message', '')
|
| 170 |
+
stream = data.get('stream', False)
|
| 171 |
|
| 172 |
if not user_message:
|
| 173 |
+
return jsonify({"error": "Please provide a message"}), 400
|
| 174 |
+
|
| 175 |
+
logger.info(f"Processing query: {user_message[:100]}...")
|
| 176 |
|
| 177 |
+
response = generate_comprehensive_response(user_message, stream)
|
| 178 |
+
response_time = round(time.time() - start_time, 2)
|
| 179 |
+
reading_time = estimate_reading_time(response)
|
| 180 |
|
| 181 |
return jsonify({
|
| 182 |
"response": response,
|
| 183 |
+
"status": "success",
|
| 184 |
+
"response_time": response_time,
|
| 185 |
+
"reading_time": reading_time,
|
| 186 |
+
"word_count": len(response.split()),
|
| 187 |
+
"model": "STANLEY-AI-7B",
|
| 188 |
+
"streaming": stream
|
| 189 |
})
|
| 190 |
|
| 191 |
except Exception as e:
|
| 192 |
+
logger.error(f"Error in chat endpoint: {e}")
|
| 193 |
return jsonify({
|
| 194 |
+
"error": f"Advanced processing error: {str(e)}",
|
| 195 |
"status": "error"
|
| 196 |
}), 500
|
| 197 |
|
| 198 |
+
@app.route('/api/stream-chat', methods=['POST'])
|
| 199 |
+
def stream_chat():
|
| 200 |
+
"""Streaming response endpoint"""
|
| 201 |
+
def generate():
|
| 202 |
+
data = request.get_json()
|
| 203 |
+
user_message = data.get('message', '')
|
| 204 |
+
|
| 205 |
+
if not user_message:
|
| 206 |
+
yield f"data: {json.dumps({'error': 'No message provided'})}\n\n"
|
| 207 |
+
return
|
| 208 |
+
|
| 209 |
+
try:
|
| 210 |
+
messages = [
|
| 211 |
+
{"role": "system", "content": STANLEY_AI_SYSTEM},
|
| 212 |
+
{"role": "user", "content": user_message}
|
| 213 |
+
]
|
| 214 |
+
|
| 215 |
+
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
|
| 216 |
+
inputs = tokenizer(text, return_tensors="pt").to(model.device)
|
| 217 |
+
|
| 218 |
+
for response_chunk in model.generate(
|
| 219 |
+
**inputs,
|
| 220 |
+
max_new_tokens=2048,
|
| 221 |
+
temperature=0.7,
|
| 222 |
+
do_sample=True,
|
| 223 |
+
streamer=True,
|
| 224 |
+
pad_token_id=tokenizer.eos_token_id
|
| 225 |
+
):
|
| 226 |
+
chunk_text = tokenizer.decode(response_chunk, skip_special_tokens=True)
|
| 227 |
+
yield f"data: {json.dumps({'chunk': chunk_text})}\n\n"
|
| 228 |
+
|
| 229 |
+
yield f"data: {json.dumps({'status': 'complete'})}\n\n"
|
| 230 |
+
|
| 231 |
+
except Exception as e:
|
| 232 |
+
yield f"data: {json.dumps({'error': str(e)})}\n\n"
|
| 233 |
+
|
| 234 |
+
return app.response_class(generate(), mimetype='text/plain')
|
| 235 |
+
|
| 236 |
+
@app.route('/api/tts', methods=['POST'])
|
| 237 |
+
def text_to_speech():
|
| 238 |
+
"""Text-to-speech endpoint"""
|
| 239 |
+
try:
|
| 240 |
+
data = request.get_json()
|
| 241 |
+
text = data.get('text', '')
|
| 242 |
+
voice = data.get('voice', 'alloy') # alloy, echo, fable, onyx, nova, shimmer
|
| 243 |
+
|
| 244 |
+
if not text:
|
| 245 |
+
return jsonify({"error": "No text provided"}), 400
|
| 246 |
+
|
| 247 |
+
# In a production environment, integrate with:
|
| 248 |
+
# - Google Cloud Text-to-Speech
|
| 249 |
+
# - Amazon Polly
|
| 250 |
+
# - Azure Cognitive Services
|
| 251 |
+
# - OpenAI TTS
|
| 252 |
+
|
| 253 |
+
# For now, return mock TTS data
|
| 254 |
+
tts_data = {
|
| 255 |
+
"text": text,
|
| 256 |
+
"voice": voice,
|
| 257 |
+
"audio_url": f"/api/audio/generated_{int(time.time())}.mp3",
|
| 258 |
+
"duration": len(text) / 10, # Rough estimate
|
| 259 |
+
"status": "processed"
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
return jsonify(tts_data)
|
| 263 |
+
|
| 264 |
+
except Exception as e:
|
| 265 |
+
return jsonify({"error": f"TTS error: {str(e)}"}), 500
|
| 266 |
+
|
| 267 |
+
@app.route('/api/analyze', methods=['POST'])
|
| 268 |
+
def analyze_query():
|
| 269 |
+
"""Advanced query analysis"""
|
| 270 |
+
data = request.get_json()
|
| 271 |
+
query = data.get('query', '')
|
| 272 |
+
|
| 273 |
+
analysis = {
|
| 274 |
+
"complexity": "high" if len(query.split()) > 15 else "medium",
|
| 275 |
+
"domains": detect_domains(query),
|
| 276 |
+
"required_depth": estimate_required_depth(query),
|
| 277 |
+
"response_strategy": determine_response_strategy(query)
|
| 278 |
+
}
|
| 279 |
+
|
| 280 |
+
return jsonify(analysis)
|
| 281 |
+
|
| 282 |
+
def detect_domains(text):
|
| 283 |
+
"""Detect relevant knowledge domains"""
|
| 284 |
+
domains = []
|
| 285 |
+
text_lower = text.lower()
|
| 286 |
+
|
| 287 |
+
domain_keywords = {
|
| 288 |
+
"science": ["science", "physics", "chemistry", "biology", "research"],
|
| 289 |
+
"technology": ["tech", "programming", "ai", "computer", "software"],
|
| 290 |
+
"philosophy": ["philosophy", "ethics", "morality", "existence"],
|
| 291 |
+
"arts": ["art", "literature", "music", "creative", "design"],
|
| 292 |
+
"mathematics": ["math", "calculate", "equation", "statistics"]
|
| 293 |
+
}
|
| 294 |
+
|
| 295 |
+
for domain, keywords in domain_keywords.items():
|
| 296 |
+
if any(keyword in text_lower for keyword in keywords):
|
| 297 |
+
domains.append(domain)
|
| 298 |
+
|
| 299 |
+
return domains if domains else ["general"]
|
| 300 |
+
|
| 301 |
+
def estimate_required_depth(query):
|
| 302 |
+
"""Estimate how detailed the response should be"""
|
| 303 |
+
depth_indicators = [
|
| 304 |
+
"explain in detail", "comprehensive", "thorough", "deep dive",
|
| 305 |
+
"analyze", "critique", "compare and contrast"
|
| 306 |
+
]
|
| 307 |
+
|
| 308 |
+
if any(indicator in query.lower() for indicator in depth_indicators):
|
| 309 |
+
return "very_high"
|
| 310 |
+
elif len(query.split()) > 20:
|
| 311 |
+
return "high"
|
| 312 |
+
else:
|
| 313 |
+
return "medium"
|
| 314 |
+
|
| 315 |
+
def determine_response_strategy(query):
|
| 316 |
+
"""Determine the best response strategy"""
|
| 317 |
+
if "step by step" in query.lower():
|
| 318 |
+
return "sequential"
|
| 319 |
+
elif "compare" in query.lower():
|
| 320 |
+
return "comparative"
|
| 321 |
+
elif "analyze" in query.lower():
|
| 322 |
+
return "analytical"
|
| 323 |
+
elif "creative" in query.lower():
|
| 324 |
+
return "creative"
|
| 325 |
+
else:
|
| 326 |
+
return "comprehensive"
|
| 327 |
+
|
| 328 |
+
@app.route('/api/status')
|
| 329 |
+
def status():
|
| 330 |
+
"""System status endpoint"""
|
| 331 |
+
return jsonify({
|
| 332 |
+
"status": "operational",
|
| 333 |
+
"model_loaded": model_loaded,
|
| 334 |
+
"gpu_available": torch.cuda.is_available(),
|
| 335 |
+
"memory_usage": f"{torch.cuda.memory_allocated() / 1024**3:.2f} GB" if torch.cuda.is_available() else "CPU only"
|
| 336 |
+
})
|
| 337 |
+
|
| 338 |
if __name__ == '__main__':
|
| 339 |
+
app.run(debug=True, host='0.0.0.0', port=7860, threaded=True)
|