Spaces:
Paused
Paused
Update cerebras.py
Browse files- cerebras.py +56 -129
cerebras.py
CHANGED
|
@@ -1,132 +1,59 @@
|
|
| 1 |
# coding:utf-8
|
| 2 |
-
import argparse
|
| 3 |
import requests
|
| 4 |
import json
|
| 5 |
-
import
|
| 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 |
-
def
|
| 51 |
-
if self.
|
| 52 |
-
self.
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
<br>
|
| 62 |
-
Your interface:<br>
|
| 63 |
-
{request.host_url}v1/chat/completions OR<br>
|
| 64 |
-
{request.host_url}api/v1/chat/completions<br>
|
| 65 |
-
<br>
|
| 66 |
-
For more infomation by visiting:<br>
|
| 67 |
-
https://github.com/tastypear/CerebrasUnofficial
|
| 68 |
-
'''
|
| 69 |
-
|
| 70 |
-
@app.route('/api/renew', methods=['GET', 'POST'])
|
| 71 |
-
@app.route('/renew', methods=['GET', 'POST'])
|
| 72 |
-
def renew_token():
|
| 73 |
-
if server_api_key == request.args.get('key', ''):
|
| 74 |
-
request_token = request.args.get('token', '')
|
| 75 |
-
global cerebras_ai
|
| 76 |
-
cerebras_ai = CerebrasUnofficial(request_token)
|
| 77 |
-
return f'new authjs.session_token: {request_token}'
|
| 78 |
-
else:
|
| 79 |
-
raise Exception('invalid api key')
|
| 80 |
-
|
| 81 |
-
@app.route('/api/v1/models', methods=['GET', 'POST'])
|
| 82 |
-
@app.route('/v1/models', methods=['GET', 'POST'])
|
| 83 |
-
def model_list():
|
| 84 |
-
model_list = {
|
| 85 |
-
'object': 'list',
|
| 86 |
-
'data': [{
|
| 87 |
-
'id': 'llama3.1-8b',
|
| 88 |
-
'object': 'model',
|
| 89 |
-
'created': 1721692800,
|
| 90 |
-
'owned_by': 'Meta'
|
| 91 |
-
}, {
|
| 92 |
-
'id': 'llama-3.3-70b',
|
| 93 |
-
'object': 'model',
|
| 94 |
-
'created': 1733443200,
|
| 95 |
-
'owned_by': 'Meta'
|
| 96 |
-
}, {
|
| 97 |
-
'id': 'deepseek-r1-distill-llama-70b',
|
| 98 |
-
'object': 'model',
|
| 99 |
-
'created': 1733443200,
|
| 100 |
-
'owned_by': 'deepseek'
|
| 101 |
-
}]
|
| 102 |
-
}
|
| 103 |
-
return jsonify(model_list)
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
@app.route('/api/v1/chat/completions', methods=['POST'])
|
| 107 |
-
@app.route('/v1/chat/completions', methods=['POST'])
|
| 108 |
-
def proxy():
|
| 109 |
-
request_key = request.headers['Authorization'].split(' ')[1]
|
| 110 |
-
if server_api_key != request_key:
|
| 111 |
-
raise Exception('invalid api key')
|
| 112 |
-
|
| 113 |
-
headers = dict(request.headers)
|
| 114 |
-
headers.pop('Host', None)
|
| 115 |
-
headers.pop('Content-Length', None)
|
| 116 |
-
|
| 117 |
-
headers['X-Use-Cache'] = 'false'
|
| 118 |
-
model = request.get_json()['model']
|
| 119 |
-
provider = Provider(request_key, model)
|
| 120 |
-
headers['Authorization'] = f'Bearer {provider.key}'
|
| 121 |
-
chat_api = f'{provider.api_url}/v1/chat/completions'
|
| 122 |
-
|
| 123 |
-
def generate():
|
| 124 |
-
with requests.post(chat_api, json=request.json, headers=headers, stream=True) as resp:
|
| 125 |
-
for chunk in resp.iter_content(chunk_size=1024):
|
| 126 |
-
if chunk:
|
| 127 |
-
chunk_str = chunk.decode('utf-8')
|
| 128 |
-
yield chunk_str
|
| 129 |
-
return Response(stream_with_context(generate()), content_type='text/event-stream')
|
| 130 |
-
|
| 131 |
-
if __name__ == '__main__':
|
| 132 |
-
app.run(host=args.host, port=args.port, debug=True)
|
|
|
|
| 1 |
# coding:utf-8
|
|
|
|
| 2 |
import requests
|
| 3 |
import json
|
| 4 |
+
from datetime import datetime, timedelta, timezone
|
| 5 |
+
|
| 6 |
+
|
| 7 |
+
class CerebrasUnofficial:
|
| 8 |
+
def __init__(self, authjs_session_token: str):
|
| 9 |
+
self.api_url = 'https://api.cerebras.ai'
|
| 10 |
+
self.authjs_session_token = authjs_session_token
|
| 11 |
+
self.key = None
|
| 12 |
+
self.expiry = None
|
| 13 |
+
self.session = requests.Session()
|
| 14 |
+
self.session.headers.update({
|
| 15 |
+
'Content-Type': 'application/json',
|
| 16 |
+
'Cookie': f'authjs.session-token={self.authjs_session_token}',
|
| 17 |
+
})
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def _get_key_from_graphql(self):
|
| 21 |
+
json_data = {
|
| 22 |
+
'operationName': 'GetMyDemoApiKey',
|
| 23 |
+
'variables': {},
|
| 24 |
+
'query': 'query GetMyDemoApiKey {\n GetMyDemoApiKey\n}',
|
| 25 |
+
}
|
| 26 |
+
response = self.session.post(
|
| 27 |
+
'https://inference.cerebras.ai/api/graphql', json=json_data
|
| 28 |
+
)
|
| 29 |
+
response.raise_for_status()
|
| 30 |
+
|
| 31 |
+
data = response.json()
|
| 32 |
+
try:
|
| 33 |
+
if 'data' in data and 'GetMyDemoApiKey' in data['data']:
|
| 34 |
+
self.key = data['data']['GetMyDemoApiKey']
|
| 35 |
+
except Exception:
|
| 36 |
+
raise Exception('Maybe your authjs.session-token is invalid.')
|
| 37 |
+
|
| 38 |
+
|
| 39 |
+
def _get_expiry_from_session(self):
|
| 40 |
+
response = self.session.get('https://cloud.cerebras.ai/api/auth/session')
|
| 41 |
+
response.raise_for_status()
|
| 42 |
+
data = response.json()
|
| 43 |
+
if 'user' in data and 'demoApiKeyExpiry' in data['user']:
|
| 44 |
+
self.expiry = datetime.fromisoformat(
|
| 45 |
+
data['user']['demoApiKeyExpiry'].replace('Z', '+00:00')
|
| 46 |
+
)
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
def get_api_key(self) -> str:
|
| 50 |
+
if self.key is None:
|
| 51 |
+
self._get_key_from_graphql()
|
| 52 |
+
else:
|
| 53 |
+
if self.expiry is None:
|
| 54 |
+
self._get_expiry_from_session()
|
| 55 |
+
if datetime.now(timezone.utc) >= self.expiry:
|
| 56 |
+
self._get_key_from_graphql()
|
| 57 |
+
self.expiry = datetime.now(timezone.utc) + timedelta(minutes=10)
|
| 58 |
+
|
| 59 |
+
return self.key
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|