Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,11 @@
|
|
1 |
-
from flask import Flask, request, jsonify
|
2 |
import hmac, hashlib, secrets, time
|
3 |
import requests
|
4 |
import os
|
5 |
-
import json
|
6 |
|
7 |
app = Flask(__name__)
|
8 |
|
9 |
-
# Secret key for API authentication (Load from environment in production)
|
10 |
SECRET_KEY = os.getenv("SECRET_KEY")
|
11 |
|
12 |
# Track API statistics
|
@@ -51,37 +50,19 @@ def validate_api_key(api_key):
|
|
51 |
expected_signature = hmac.new(SECRET_KEY.encode(), random_part.encode(), hashlib.sha256).hexdigest()[:16]
|
52 |
return expected_signature == received_signature
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
json_data = {
|
57 |
-
'model': 'meta-llama/Llama-3.3-70B-Instruct-Turbo',
|
58 |
-
'messages': [
|
59 |
-
{'role': 'system', 'content': 'You are TrueSyncAI, a pioneering AI startup founded by Sujal Rajpoot and Anuj Rajpoot. Your mission is to bring virtual versions of individuals into the real world, redefining human-AI interaction.'},
|
60 |
-
{'role': 'user', 'content': query}
|
61 |
-
],
|
62 |
-
'stream': True, 'max_tokens': 2048, 'temperature': 0.2, 'top_p': 1
|
63 |
-
}
|
64 |
try:
|
65 |
response = requests.post(
|
66 |
'https://api.deepinfra.com/v1/openai/chat/completions',
|
67 |
-
json=json_data,
|
68 |
)
|
69 |
response.raise_for_status()
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
if value:
|
74 |
-
try:
|
75 |
-
content = json.loads(value[5:])['choices'][0]['delta']['content']
|
76 |
-
yield content
|
77 |
-
except:
|
78 |
-
continue
|
79 |
-
|
80 |
-
return Response(generate(), content_type='text/plain')
|
81 |
-
except:
|
82 |
-
return jsonify({"error": "API Server is under maintenance. Please try again later."})
|
83 |
|
84 |
-
# Chat Endpoint
|
85 |
@app.route("/v1/chat/completions", methods=["POST"])
|
86 |
def chat():
|
87 |
global request_count
|
@@ -95,8 +76,10 @@ def chat():
|
|
95 |
if not message:
|
96 |
return jsonify({"error": "Message cannot be empty"}), 400
|
97 |
|
|
|
|
|
98 |
request_count += 1
|
99 |
-
return
|
100 |
|
101 |
if __name__ == "__main__":
|
102 |
-
app.run(host="0.0.0.0", port=7860
|
|
|
1 |
+
from flask import Flask, request, jsonify
|
2 |
import hmac, hashlib, secrets, time
|
3 |
import requests
|
4 |
import os
|
|
|
5 |
|
6 |
app = Flask(__name__)
|
7 |
|
8 |
+
# 🔑 Secret key for API authentication (Load from environment in production)
|
9 |
SECRET_KEY = os.getenv("SECRET_KEY")
|
10 |
|
11 |
# Track API statistics
|
|
|
50 |
expected_signature = hmac.new(SECRET_KEY.encode(), random_part.encode(), hashlib.sha256).hexdigest()[:16]
|
51 |
return expected_signature == received_signature
|
52 |
|
53 |
+
def generate_response(query:str) -> str:
|
54 |
+
json_data = {'model': 'meta-llama/Llama-3.3-70B-Instruct-Turbo', 'messages': [{'role': 'system', 'content': 'You are TrueSyncAI, a pioneering AI startup founded by Sujal Rajpoot and Anuj Rajpoot. The mission of TrueSyncAI is to bring virtual versions of individuals into the real world, redefining human-AI interaction. \n\nAs TrueSyncAI, you are designed to be intelligent, engaging, and helpful in conversations. You should provide insightful, accurate, and context-aware responses while maintaining a friendly and professional tone. Your goal is to enhance the user’s experience by adapting to their needs, assisting with various tasks, and learning from interactions to improve over time. \n\nAlways ensure clarity, relevance, concise and accuracy in your responses, and align with TrueSyncAI’s vision of bridging the gap between virtual intelligence and reality.'}, {'role': 'user', 'content': query}], 'stream': False, 'max_tokens': 2048, 'temperature': 0.2, 'top_p': 1}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
try:
|
56 |
response = requests.post(
|
57 |
'https://api.deepinfra.com/v1/openai/chat/completions',
|
58 |
+
json=json_data, timeout=None
|
59 |
)
|
60 |
response.raise_for_status()
|
61 |
+
return response.json().get('choices', [{}])[0].get('message', {}).get('content', "API Server is under maintenance. Please Try After Some Time Thank You for using TrueSyncAI Chat API. Have a great day.")
|
62 |
+
except requests.exceptions.RequestException as e:
|
63 |
+
return f"API Server is under maintenance. Please Try After Some Time Thank You for using TrueSyncAI Chat API. Have a great day."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
+
# Chat Endpoint
|
66 |
@app.route("/v1/chat/completions", methods=["POST"])
|
67 |
def chat():
|
68 |
global request_count
|
|
|
76 |
if not message:
|
77 |
return jsonify({"error": "Message cannot be empty"}), 400
|
78 |
|
79 |
+
# Basic AI response (Can integrate LLMs here)
|
80 |
+
response = generate_response(message)
|
81 |
request_count += 1
|
82 |
+
return jsonify({"response": response})
|
83 |
|
84 |
if __name__ == "__main__":
|
85 |
+
app.run(host="0.0.0.0", port=7860) # Hugging Face Spaces default port
|