Spaces:
Paused
Paused
init
Browse files- cerebras.py +59 -0
- requirements.txt +0 -0
- serve.py +117 -0
- start.sh +4 -0
cerebras.py
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
requirements.txt
ADDED
|
File without changes
|
serve.py
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# coding:utf-8
|
| 2 |
+
import argparse
|
| 3 |
+
import requests
|
| 4 |
+
import json
|
| 5 |
+
import os
|
| 6 |
+
from cerebras import CerebrasUnofficial
|
| 7 |
+
from flask import Flask, request, Response, stream_with_context, jsonify
|
| 8 |
+
import sys
|
| 9 |
+
|
| 10 |
+
# -- Start of Config --
|
| 11 |
+
|
| 12 |
+
# Replace with your cerebras.ai session token found in the `authjs.session-token` cookie.
|
| 13 |
+
# Or you can `set AUTHJS_SESSION_TOKEN=authjs.session-token`
|
| 14 |
+
# This token is valid for one month.
|
| 15 |
+
authjs_session_token = '12345678-abcd-abcd-abcd-12345678abcd'
|
| 16 |
+
|
| 17 |
+
# Replace with any string you wish like `my-api-key`.
|
| 18 |
+
# Or you can `set SERVER_API_KEY=my-api-key`
|
| 19 |
+
# You should set it to update the session token in the future.
|
| 20 |
+
server_api_key = 'my-api-key'
|
| 21 |
+
|
| 22 |
+
# -- End of Config --
|
| 23 |
+
|
| 24 |
+
sys.tracebacklimit = 0
|
| 25 |
+
|
| 26 |
+
authjs_session_token = os.environ.get('AUTHJS_SESSION_TOKEN', authjs_session_token)
|
| 27 |
+
server_api_key = os.environ.get('SERVER_API_KEY', server_api_key)
|
| 28 |
+
print(f'Using the cookie: authjs.session-token={authjs_session_token}')
|
| 29 |
+
print(f'Your api key: {server_api_key}')
|
| 30 |
+
|
| 31 |
+
cerebras_ai = CerebrasUnofficial(authjs_session_token)
|
| 32 |
+
|
| 33 |
+
app = Flask(__name__)
|
| 34 |
+
app.json.sort_keys = False
|
| 35 |
+
parser = argparse.ArgumentParser(description='Cerebras.AI API.')
|
| 36 |
+
parser.add_argument('--host', type=str, help='Set the ip address.(default: 0.0.0.0)', default='0.0.0.0')
|
| 37 |
+
parser.add_argument('--port', type=int, help='Set the port.(default: 7860)', default=7860)
|
| 38 |
+
args = parser.parse_args()
|
| 39 |
+
|
| 40 |
+
class Provider:
|
| 41 |
+
key = ''
|
| 42 |
+
max_tokens = None
|
| 43 |
+
api_url = ''
|
| 44 |
+
|
| 45 |
+
def __init__(self, request_key, model):
|
| 46 |
+
self.request_key = request_key
|
| 47 |
+
self.model = model
|
| 48 |
+
self.init_request_info()
|
| 49 |
+
|
| 50 |
+
def init_request_info(self):
|
| 51 |
+
if self.request_key == server_api_key:
|
| 52 |
+
self.api_url = cerebras_ai.api_url
|
| 53 |
+
self.key = cerebras_ai.get_api_key()
|
| 54 |
+
|
| 55 |
+
@app.route('/api/renew', methods=['GET', 'POST'])
|
| 56 |
+
@app.route('/renew', methods=['GET', 'POST'])
|
| 57 |
+
def renew_token():
|
| 58 |
+
if server_api_key == request.args.get('key', ''):
|
| 59 |
+
request_token = request.args.get('token', '')
|
| 60 |
+
global cerebras_ai
|
| 61 |
+
cerebras_ai = CerebrasUnofficial(request_token)
|
| 62 |
+
return f'new authjs.session_token: {request_token}'
|
| 63 |
+
else:
|
| 64 |
+
raise Exception('invalid api key')
|
| 65 |
+
|
| 66 |
+
@app.route('/api/v1/models', methods=['GET', 'POST'])
|
| 67 |
+
@app.route('/v1/models', methods=['GET', 'POST'])
|
| 68 |
+
def model_list():
|
| 69 |
+
model_list = {
|
| 70 |
+
'object': 'list',
|
| 71 |
+
'data': [{
|
| 72 |
+
'id': 'llama3.1-8b',
|
| 73 |
+
'object': 'model',
|
| 74 |
+
'created': 1721692800,
|
| 75 |
+
'owned_by': 'Meta'
|
| 76 |
+
}, {
|
| 77 |
+
'id': 'llama-3.3-70b',
|
| 78 |
+
'object': 'model',
|
| 79 |
+
'created': 1733443200,
|
| 80 |
+
'owned_by': 'Meta'
|
| 81 |
+
}, {
|
| 82 |
+
'id': 'deepseek-r1-distill-llama-70b',
|
| 83 |
+
'object': 'model',
|
| 84 |
+
'created': 1733443200,
|
| 85 |
+
'owned_by': 'deepseek'
|
| 86 |
+
}]
|
| 87 |
+
}
|
| 88 |
+
return jsonify(model_list)
|
| 89 |
+
|
| 90 |
+
|
| 91 |
+
@app.route('/api/v1/chat/completions', methods=['POST'])
|
| 92 |
+
@app.route('/v1/chat/completions', methods=['POST'])
|
| 93 |
+
def proxy():
|
| 94 |
+
request_key = request.headers['Authorization'].split(' ')[1]
|
| 95 |
+
if server_api_key != request_key:
|
| 96 |
+
raise Exception('invalid api key')
|
| 97 |
+
|
| 98 |
+
headers = dict(request.headers)
|
| 99 |
+
headers.pop('Host', None)
|
| 100 |
+
headers.pop('Content-Length', None)
|
| 101 |
+
|
| 102 |
+
headers['X-Use-Cache'] = 'false'
|
| 103 |
+
model = request.get_json()['model']
|
| 104 |
+
provider = Provider(request_key, model)
|
| 105 |
+
headers['Authorization'] = f'Bearer {provider.key}'
|
| 106 |
+
chat_api = f'{provider.api_url}/v1/chat/completions'
|
| 107 |
+
|
| 108 |
+
def generate():
|
| 109 |
+
with requests.post(chat_api, json=request.json, headers=headers, stream=True) as resp:
|
| 110 |
+
for chunk in resp.iter_content(chunk_size=1024):
|
| 111 |
+
if chunk:
|
| 112 |
+
chunk_str = chunk.decode('utf-8')
|
| 113 |
+
yield chunk_str
|
| 114 |
+
return Response(stream_with_context(generate()), content_type='text/event-stream')
|
| 115 |
+
|
| 116 |
+
if __name__ == '__main__':
|
| 117 |
+
app.run(host=args.host, port=args.port, debug=True)
|
start.sh
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
python serve.py &
|
| 3 |
+
python space_checker.py &
|
| 4 |
+
wait
|