Spaces:
Running
Running
File size: 9,309 Bytes
82d9700 7e8a8d2 304bfcc 7e8a8d2 ce9d099 7e8a8d2 31c3a8e 7e8a8d2 82d9700 7910d5f 82d9700 375197c 82d9700 375197c 82d9700 f314156 7e8a8d2 0af7a49 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 8728a06 7e8a8d2 5d5b019 7e8a8d2 0af7a49 7e8a8d2 304bfcc 7e8a8d2 304bfcc ae34437 0af7a49 304bfcc 7e8a8d2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
from flask import Flask, request, jsonify, Response, stream_with_context, render_template_string
import google.generativeai as genai
import json
from datetime import datetime
import os
import logging
import func
from apscheduler.schedulers.background import BackgroundScheduler
import requests
import time
os.environ['TZ'] = 'Asia/Shanghai'
app = Flask(__name__)
app.secret_key = os.urandom(24)
formatter = logging.Formatter('%(message)s')
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
handler = logging.StreamHandler()
handler.setFormatter(formatter)
logger.addHandler(handler)
safety_settings = [
{
"category": "HARM_CATEGORY_HARASSMENT",
"threshold": "BLOCK_NONE"
},
{
"category": "HARM_CATEGORY_HATE_SPEECH",
"threshold": "BLOCK_NONE"
},
{
"category": "HARM_CATEGORY_SEXUALLY_EXPLICIT",
"threshold": "BLOCK_NONE"
},
{
"category": "HARM_CATEGORY_DANGEROUS_CONTENT",
"threshold": "BLOCK_NONE"
},
]
class APIKeyManager:
def __init__(self):
self.api_keys = os.environ.get('KeyArray').split(',')
self.current_index = 0
def get_available_key(self):
if self.current_index >= len(self.api_keys):
self.current_index = 0
current_key = self.api_keys[self.current_index]
self.current_index += 1
return current_key
key_manager = APIKeyManager()
current_api_key = key_manager.get_available_key()
logger.info(f"Current API key: {current_api_key[:11]}...")
GEMINI_MODELS = [
{"id": "gemini-pro"},
{"id": "gemini-pro-vision"},
{"id": "gemini-1.0-pro"},
{"id": "gemini-1.0-pro-vision"},
{"id": "gemini-1.5-pro-002"},
{"id": "gemini-exp-1114"},
{"id": "gemini-exp-1121"},
{"id": "gemini-exp-1206"},
{"id": "gemini-2.0-flash-exp"},
{"id": "gemini-2.0-exp"},
{"id": "gemini-2.0-pro-exp"},
]
@app.route('/')
def index():
main_content = "Moonfanz Gemini"
html_template = """
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function copyToClipboard(text) {
var textarea = document.createElement("textarea");
textarea.textContent = text;
textarea.style.position = "fixed";
document.body.appendChild(textarea);
textarea.select();
try {
return document.execCommand("copy");
} catch (ex) {
console.warn("Copy to clipboard failed.", ex);
return false;
} finally {
document.body.removeChild(textarea);
}
}
function copyLink(event) {
event.preventDefault();
const url = new URL(window.location.href);
const link = url.protocol + '//' + url.host + '/hf/v1';
copyToClipboard(link);
alert('链接已复制: ' + link);
}
</script>
</head>
<body>
{{ main_content }}<br/><br/>完全开源、免费且禁止商用<br/><br/>点击复制反向代理: <a href="v1" onclick="copyLink(event)">Copy Link</a><br/>聊天来源选择"自定义(兼容 OpenAI)"<br/>将复制的网址填入到自定义端点<br/>将环境设置中的password填入自定义API秘钥<br/><br/><br/>
</body>
</html>
"""
return render_template_string(html_template, main_content=main_content)
@app.route('/hf/v1/chat/completions', methods=['POST'])
def chat_completions():
global current_api_key
is_authenticated, auth_error, status_code = func.authenticate_request(request)
if not is_authenticated:
return auth_error if auth_error else jsonify({'error': '未授权'}), status_code if status_code else 401
try:
request_data = request.get_json()
messages = request_data.get('messages', [])
model = request_data.get('model', 'gemini-exp-1206')
temperature = request_data.get('temperature', 1)
max_tokens = request_data.get('max_tokens', 8192)
stream = request_data.get('stream', False)
logger.info(f"\n{model} [r] -> {current_api_key[:11]}...")
gemini_history, user_message, error_response = func.process_messages_for_gemini(messages)
if error_response:
print(error_response)
genai.configure(api_key=current_api_key)
generation_config = {
"temperature": temperature,
"max_output_tokens": max_tokens
}
gen_model = genai.GenerativeModel(
model_name=model,
generation_config=generation_config,
safety_settings=safety_settings
)
if stream:
if gemini_history:
chat_session = gen_model.start_chat(history=gemini_history)
response = chat_session.send_message(user_message, stream=True)
else:
response = gen_model.generate_content(user_message, stream=True)
def generate():
try:
for chunk in response:
if chunk.text:
data = {
'choices': [
{
'delta': {
'content': chunk.text
},
'finish_reason': None,
'index': 0
}
],
'object': 'chat.completion.chunk'
}
yield f"data: {json.dumps(data)}\n\n"
data = {
'choices': [
{
'delta': {},
'finish_reason': 'stop',
'index': 0
}
],
'object': 'chat.completion.chunk'
}
yield f"data: {json.dumps(data)}\n\n"
except Exception as e:
logger.error(f"Error during streaming: {str(e)}")
data = {
'error': {
'message': str(e),
'type': 'internal_server_error'
}
}
yield f"data: {json.dumps(data)}\n\n"
return Response(stream_with_context(generate()), mimetype='text/event-stream')
else:
if gemini_history:
chat_session = gen_model.start_chat(history=gemini_history)
response = chat_session.send_message(user_message)
else:
response = gen_model.generate_content(user_message)
try:
text_content = response.candidates[0].content.parts[0].text
except (AttributeError, IndexError, TypeError) as e:
logger.error(f"Error getting text content: {str(e)}")
text_content = "Error: Unable to get text content."
response_data = {
'id': 'chatcmpl-xxxxxxxxxxxx',
'object': 'chat.completion',
'created': int(datetime.now().timestamp()),
'model': model,
'choices': [{
'index': 0,
'message': {
'role': 'assistant',
'content': text_content
},
'finish_reason': 'stop'
}],
'usage':{
'prompt_tokens': 0,
'completion_tokens': 0,
'total_tokens': 0
}
}
logger.info(f"Generation Success")
return jsonify(response_data)
except Exception as e:
logger.error(f"Error in chat completions: {str(e)}")
current_api_key = key_manager.get_available_key()
logger.info(f"API KEY Switched -> {current_api_key[:11]}...")
return jsonify({
'error': {
'message': str(e),
'type': 'invalid_request_error'
}
}), 500
@app.route('/hf/v1/models', methods=['GET'])
def list_models():
is_authenticated, auth_error, status_code = func.authenticate_request(request)
if not is_authenticated:
return auth_error if auth_error else jsonify({'error': '未授权'}), status_code if status_code else 401
response = {"object": "list", "data": GEMINI_MODELS}
return jsonify(response)
def keep_alive():
try:
response = requests.get("http://127.0.0.1:7860/", timeout=10)
response.raise_for_status()
print(f"Keep alive ping successful: {response.status_code} at {time.ctime()}")
except requests.exceptions.RequestException as e:
print(f"Keep alive ping failed: {e} at {time.ctime()}")
if __name__ == '__main__':
scheduler = BackgroundScheduler()
scheduler.add_job(keep_alive, 'interval', hours = 12)
scheduler.start()
app.run(debug=True, host='0.0.0.0', port=int(os.environ.get('PORT', 7860))) |