Spaces:
Sleeping
Sleeping
File size: 15,476 Bytes
08df1d7 c575e18 10c1f9c b6d296b 10c1f9c b14eb2f 10c1f9c 30c1075 10c1f9c c98db13 d524017 7a94c8b b916cdf 938caa9 c575e18 10c1f9c 7a94c8b 10c1f9c b6d296b 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c 7a94c8b 10c1f9c c575e18 8072380 938caa9 62b6778 8b05b02 7a94c8b c2a8d1e 62b6778 c2a8d1e 62b6778 c2a8d1e 1c5d6b7 938caa9 62b6778 8b05b02 7a94c8b 8b05b02 333771a 8b05b02 7a94c8b 333771a 7a94c8b 62b6778 f1cc9d9 62b6778 938caa9 7a94c8b 938caa9 08df1d7 938caa9 08ae35d 938caa9 b6d296b b916cdf c575e18 3f38057 7a94c8b |
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 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 |
from fastapi import FastAPI, Request
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
from fastapi import FastAPI, BackgroundTasks, HTTPException, Query
from fastapi.responses import StreamingResponse
from starlette.concurrency import run_in_threadpool
from datasets import load_dataset
from fastapi import FastAPI, Depends, HTTPException, status
from fastapi.security import OAuth2PasswordBearer
import random
import json
from genson import SchemaBuilder
from pathvalidate import sanitize_filename
from openai import OpenAI
import hashlib
import base64
from pprint import pprint
import asyncio
import importlib.util
import traceback
import sys
import json
import jsonschema
from utils import extract_code
import numpy as np
import os
import requests
import secrets
import urllib.parse
app = FastAPI()
client_id = os.getenv("OAUTH_CLIENT_ID")
client_secret = os.getenv("OAUTH_CLIENT_SECRET")
space_host = os.getenv("SPACE_HOST")
client = OpenAI(
base_url="https://openrouter.ai/api/v1",
api_key=os.environ.get('OPENROUTER_KEY')
)
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
state_queue_map = {}
def is_sharegpt(sample):
schema = {
'$schema': 'http://json-schema.org/schema#',
'type': 'object',
'properties': {
'conversations': {
'type': 'array',
'items': {
'type': 'object',
'properties': {
'from': {
'type': 'string',
'enum': [
'human',
'gpt',
'system']},
'value': {
'type': 'string'}},
'required': [
'from',
'value']}}},
'required': ['conversations']}
try:
jsonschema.validate(instance=sample, schema=schema)
return True
except jsonschema.exceptions.ValidationError as e:
return False
def sha256(string):
# Create a hashlib object for SHA-256
sha256_hash = hashlib.sha256()
# Update the hash object with your string encoded as bytes
sha256_hash.update(string.encode('utf-8'))
return sha256_hash.hexdigest()
def get_adapter_name(sample):
builder = SchemaBuilder()
builder.add_object(sample)
schema = builder.to_schema()
return sha256(json.dumps(schema))
def has_adapter(sample):
adapter_name = get_adapter_name(sample)
module_name = f"dataset_adapters.{adapter_name}"
module_spec = importlib.util.find_spec(module_name)
if module_spec is None:
return False
return True
def auto_tranform(sample):
adapter_name = get_adapter_name(sample)
if not has_adapter(sample):
create_adapter(sample, adapter_name)
module_name = f"dataset_adapters.{adapter_name}"
spec = importlib.util.spec_from_file_location(
module_name, f"dataset_adapters/{adapter_name}.py")
dynamic_module = importlib.util.module_from_spec(spec)
sys.modules[module_name] = dynamic_module
spec.loader.exec_module(dynamic_module)
transformed_data = dynamic_module.transform_data(sample)
if isinstance(transformed_data, list):
return {'conversations': transformed_data}
return transformed_data
with open(f"dataset_adapters/{adapter_name}.py", 'w') as file:
file.write(code_string)
def create_adapter(sample, adapter_name):
builder = SchemaBuilder()
builder.add_object(sample)
schema = builder.to_schema()
prompt = f"""Make me minimal and efficient python code to convert data in the shape of
initial data shape
==========β‘οΈππ==========
```jsonschema
{schema}
```
==========β‘οΈππ==========
to equivalent data in the form
final data shape
==========β¬οΈππ==========
```jsonschema
{{'$schema': 'http://json-schema.org/schema#', 'type': 'object', 'properties': {{'conversations': {{'type': 'array', 'items': {{'type': 'object', 'properties': {{'from': {{ 'type': 'string', 'enum': ['human', 'gpt', 'system'] }}, 'value': {{'type': 'string'}}}}, 'required': ['from', 'value']}}}}}}, 'required': ['conversations']}}
```
==========β¬οΈππ==========
the data to transform is
```json
{sample}
```
Inside the data to transform, `input` and `instruction` is usually associated with `"from" : "human"` while `output` is usually associated with `"from" : "gpt"`
For transforming the data you shall use python. Make robust and elegant python code that will do the transformation
your code will contain a function `def transform_data(data):` that does the transformation and outputs the newly shaped data. Only the data, no schema. Your code snippet will include only the function signature and body. I know how to call it. You won't need to import anything, I will take care of parsing and dumping json. You work with dicts. Remember to be careful if you iterate over the data because I want the output conversation to always start with the prompt. In other words, always process "input" before "output" and "instruction" before "output". Such heuristics are very important. If there is "instruction" and "input" and the "input" is not empty, concat the input at the end of the first message. If the data contains no "system" message, human always speaks first. If it contains a "system" message, the "system" message is first, then human, then gpt, then alternating if needed
"human" ALWAYS SPEAKS BEFORE "gpt", if you suspect your code makes "gpt speak first, fix it
MOST IMPORTANT IS THAT YOU look at the initial data shape (β‘οΈππ) to ground your transformation into final data shape (β¬οΈππ)
Your output should contain only the code for `def transform_data(data):`, signature and body. Put the code inside markdown code block"""
response = client.chat.completions.create(
model="openai/gpt-4-1106-preview",
messages=[
{"role": "system", "content": """You are ChatGPT, a large language model trained by OpenAI, based on the GPT-4 architecture.
Knowledge cutoff: 2023-04
Current date: 2023-11-05
Image input capabilities: Enabled"""},
{"role": "user", "content": prompt}
]
)
val = response.choices[0].message.content
code_string = extract_code(val)
if code_string is None:
raise Exception("hey la")
with open(f"dataset_adapters/{adapter_name}.py", 'w') as file:
file.write(code_string)
@app.get("/sample")
async def get_sample(hash: str = Query(..., alias="hash")):
res = await get_sample_by_hash(hash)
if res is None:
raise HTTPException(status_code=404, detail="Item not found")
data, dataset = res
sample = auto_tranform(json.loads(data))
return {'sample': sample, 'dataset': dataset}
def generate_random_string(length=16):
return secrets.token_hex(length)
@app.get("/oauth_token")
async def get_oauth_token():
queue = asyncio.Queue()
async def event_stream(queue, state):
state_queue_map[state] = queue
redirect_uri = f'https://{space_host}/login/callback'
auth_url = (
f"https://huggingface.co/oauth/authorize?"
f"redirect_uri={urllib.parse.quote(redirect_uri)}&"
f"client_id={client_id}&"
f"scope=openid%20profile&"
f"response_type=code&"
f"state={state}"
)
yield f"data: {json.dumps({ 'url' : auth_url })}\n\n"
try:
while True:
message = await queue.get()
if 'end_stream' in message and message['end_stream']:
break
yield f"data: {json.dumps(message)}\n\n"
finally:
del state_queue_map[state]
state = generate_random_string()
return StreamingResponse(
event_stream(queue, state),
media_type="text/event-stream")
@app.get("/random-sample-stream")
async def get_random_sample(background_tasks: BackgroundTasks, dataset_name: str = Query(..., alias="dataset-name"), index: str = Query(None, alias="index")):
queue = asyncio.Queue()
def event_stream(queue):
yield f"data: {json.dumps({'status': 'grab_sample'})}\n\n"
try:
headers = {"Authorization": f"Bearer {os.environ.get('HF_TOKEN')}"}
API_URL = f"https://datasets-server.huggingface.co/info?dataset={dataset_name}"
def query():
response = requests.get(API_URL, headers=headers)
return response.json()
data = query()
splits = data['dataset_info']['default']['splits']
split = next(iter(splits.values()))
num_samples = split['num_examples']
split_name = split['name']
idx = random.randint(
0, num_samples) if index is None else int(index)
API_URL = f"https://datasets-server.huggingface.co/rows?dataset={dataset_name}&config=default&split=train&offset={idx}&length=1"
def query():
headers = {
"Authorization": f"Bearer {os.environ.get('HF_TOKEN')}"}
response = requests.get(API_URL, headers=headers)
if response.status_code != 200:
raise Exception("hugging face api error")
return response.json()
data = query()
random_sample = data['rows'][0]['row']
hashed = sha256(json.dumps(random_sample))
except Exception as e:
message = ""
if hasattr(e, 'message'):
message = e.message
else:
message = str(e)
print("error : ", message)
yield f"data: {json.dumps({'status': 'error', 'message' : message })}\n\n"
transformed_data = random_sample
success = True
if not is_sharegpt(random_sample):
try:
if not has_adapter(random_sample):
yield f"data: {json.dumps({'status': 'creating_adapter'})}\n\n"
transformed_data = auto_tranform(random_sample)
except Exception as e:
success = False
if hasattr(e, 'message'):
print("error : ", e.message)
else:
print("error : ", e)
yield f"data: {json.dumps({'status': 'error'})}\n\n"
if success:
yield f"data: {json.dumps({'status': 'done', 'data' : transformed_data, 'index' : str(idx)})}\n\n"
return StreamingResponse(
event_stream(queue),
media_type="text/event-stream")
@app.get("/random-sample")
async def get_random_sample(dataset_name: str = Query(..., alias="dataset-name")):
try:
dataset = load_dataset(dataset_name, streaming=True)
split = [key for key in dataset.keys() if "train" in key]
dataset = load_dataset(dataset_name, split=split[0], streaming=True)
buffer_size = 100 # Define a reasonable buffer size
samples_buffer = [
sample for _, sample in zip(
range(buffer_size), dataset)]
random_sample = random.choice(samples_buffer)
hashed = sha256(json.dumps(random_sample))
sanitized = sanitize_filename(dataset_name)
module_name = f"dataset_adapters.{sanitized}"
module_spec = importlib.util.find_spec(module_name)
if module_spec is None:
create_adapter(random_sample, sanitized)
spec = importlib.util.spec_from_file_location(
module_name, f"dataset_adapters/{sanitized}.py")
dynamic_module = importlib.util.module_from_spec(spec)
sys.modules[module_name] = dynamic_module
spec.loader.exec_module(dynamic_module)
transformed_data = dynamic_module.transform_data(random_sample)
return transformed_data
except FileNotFoundError:
raise HTTPException(status_code=404, detail="Dataset not found")
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.get("/login/callback")
async def oauth_callback(code: str, state: str):
credentials = f"{client_id}:{client_secret}"
credentials_bytes = credentials.encode("ascii")
base64_credentials = base64.b64encode(credentials_bytes)
auth_header = f"Basic {base64_credentials.decode('ascii')}"
username = ""
try:
token_response = requests.post(
'https://huggingface.co/oauth/token',
headers={'Authorization': auth_header},
data={
'grant_type': 'authorization_code',
'code': code,
'redirect_uri': f'https://{space_host}/login/callback',
'client_id': client_id
}
)
print(token_response.status_code, token_response.text)
if token_response.status_code == 200:
tokens = token_response.json()
access_token = tokens.get('access_token')
if access_token:
url = "https://huggingface.co/oauth/userinfo"
payload = ""
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {access_token}"
}
response = requests.request(
"GET", url, data=payload, headers=headers)
data = response.json()
username = data["preferred_username"]
picture = data["picture"]
if state in state_queue_map:
queue = state_queue_map[state]
await queue.put({"access_token": access_token, "username": username, "picture" : f"https://huggingface.co{picture}" })
await queue.put({"end_stream": True})
else:
username = ""
else:
access_token = ""
except Exception:
traceback.print_exc()
access_token = ""
return {"access_token": access_token, "username": username}
@app.get("/oauth-config")
async def get_oauth_config(request: Request):
return {
"client_id": client_id,
"redirect_uri": f'https://{space_host}/login/callback'
}
async def get_current_user(token: str = Depends(oauth2_scheme)):
if not token:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Missing token",
headers={"WWW-Authenticate": "Bearer"},
)
url = "https://huggingface.co/oauth/userinfo"
headers = {"Authorization": f"Bearer {token}"}
response = requests.get(url, headers=headers)
if response.status_code != 200:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Invalid token",
headers={"WWW-Authenticate": "Bearer"},
)
user_info = response.json()
return user_info
@app.get("/gated_route")
async def gated_route(current_user: str = Depends(get_current_user)):
# Your logic here. The endpoint will only be accessible if the token is valid
return {"message": "You are authorized to access this route"}
@app.get("/")
def index() -> FileResponse:
return FileResponse(path="static/index.html", media_type="text/html")
app.mount("/", StaticFiles(directory="static"), name="static")
|