File size: 11,797 Bytes
516b1f5 dc7f995 d36ebbf 516b1f5 e259644 d36ebbf 516b1f5 d36ebbf 516b1f5 e259644 516b1f5 d36ebbf 516b1f5 d36ebbf 516b1f5 41d90ff 516b1f5 d36ebbf 516b1f5 41d90ff 516b1f5 dc7f995 516b1f5 5eb95c5 41d90ff 516b1f5 41d90ff 516b1f5 5eb95c5 516b1f5 5eb95c5 516b1f5 d36ebbf 5eb95c5 516b1f5 5eb95c5 516b1f5 00218eb 516b1f5 41d90ff 00218eb 41d90ff 516b1f5 41d90ff 516b1f5 41d90ff 516b1f5 e259644 516b1f5 e259644 5eb95c5 e259644 5eb95c5 516b1f5 5eb95c5 516b1f5 5eb95c5 d36ebbf ade1378 d36ebbf ade1378 d36ebbf 516b1f5 d36ebbf dc7f995 d36ebbf 516b1f5 dc7f995 d36ebbf 516b1f5 dc7f995 516b1f5 d36ebbf 516b1f5 00218eb 516b1f5 05e8104 516b1f5 00218eb d36ebbf 00218eb d36ebbf 00218eb 516b1f5 dc7f995 05e8104 516b1f5 05e8104 516b1f5 d36ebbf 516b1f5 d36ebbf 516b1f5 05e8104 516b1f5 dc7f995 05e8104 e259644 05e8104 e259644 05e8104 e259644 05e8104 e259644 05e8104 e259644 05e8104 e259644 516b1f5 05e8104 d36ebbf 516b1f5 d36ebbf 516b1f5 e259644 516b1f5 | 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 | import json
import uuid
from datetime import datetime
import mistune
import openai
from dotenv import load_dotenv
from easycompletion import openai_text_call
from fastapi import FastAPI, HTTPException
from fastapi import Request
from fastapi.middleware.gzip import GZipMiddleware
from fastapi.testclient import TestClient
from gradio import Interface, TabbedInterface, components, mount_gradio_app
from pydantic import BaseModel
from pygments import highlight
from pygments.formatters import html
from pygments.lexers import get_lexer_by_name
from sqlalchemy import JSON, Column, Integer, String, create_engine
from fastapi.responses import FileResponse, JSONResponse
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import Session, sessionmaker
from uvicorn import Config, Server
LANGS = [
"gpt-3.5-turbo",
"gpt-4",
]
Base = declarative_base()
class User(Base):
__tablename__ = "user_data"
id = Column(Integer, primary_key=True, autoincrement=True)
uid = Column(String, nullable=False)
openai_key = Column(String, unique=True, nullable=False)
def __repr__(self):
return f"User(id={self.id}, uid={self.uid}"
class AndroidHistory(Base):
__tablename__ = "android_history"
id = Column(Integer, primary_key=True, autoincrement=True)
uid = Column(String, nullable=False)
question = Column(String, nullable=False)
answer = Column(String, nullable=False)
def __repr__(self):
return f"AndroidHistory(question={self.question}, answer={self.answer}"
class BrowserHistory(Base):
__tablename__ = "browser_history"
id = Column(Integer, primary_key=True, autoincrement=True)
machineid = Column(String, nullable=False)
uid = Column(String, nullable=False)
url = Column(String, nullable=False)
def __repr__(self):
return f"BrowserHistory(machineid={self.machineid}, url={self.url}"
# Add a new table to store the commands
class Command(Base):
__tablename__ = "commands"
id = Column(Integer, primary_key=True, autoincrement=True)
uid = Column(String, nullable=False)
command = Column(String, nullable=False)
status = Column(String, nullable=False, default="queued")
def __repr__(self):
return f"self.command"
engine = create_engine("sqlite:///puppet.db")
Base.metadata.create_all(bind=engine)
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
load_dotenv()
app = FastAPI(debug=True)
app.add_middleware(GZipMiddleware, minimum_size=1000)
class RegisterItem(BaseModel):
openai_key: str
class CommandItem(BaseModel):
uid: str
command: str
class EventItem(BaseModel):
uid: str
event: str
class AssistItem(BaseModel):
uid: str
prompt: str
version: str
class SaveURLItem(BaseModel):
uid: str
machineid: str
url: str
@app.post("/add_command")
async def add_command(item: CommandItem):
db: Session = SessionLocal()
new_command = Command(uid=item.uid, command=item.command)
db.add(new_command)
db.commit()
db.refresh(new_command)
return {"message": "Command added"}
@app.post("/send_event")
async def send_event(item: EventItem):
print(f"Received event from {item.uid}:\n{item.event}")
with open(f"{item.uid}_events.txt", "a") as f:
f.write(f"{datetime.now()} - {item.event}\n")
db: Session = SessionLocal()
user = db.query(User).filter(User.uid == item.uid).first()
if not user:
raise HTTPException(status_code=400, detail="Invalid uid")
# Update the last time send_event was called and increment the number of events
user.last_event = datetime.now()
db.commit()
# Get all the queued commands for this user
commands = (
db.query(Command)
.filter(Command.uid == item.uid, Command.status == "queued")
.all()
)
for command in commands:
command.status = "running"
db.commit()
return {
"message": "Event received",
"commands": [command.command for command in commands],
}
@app.post("/register")
async def register(item: RegisterItem):
db: Session = SessionLocal()
existing_user = db.query(User).filter(User.openai_key == item.openai_key).first()
if existing_user:
return {"uid": existing_user.uid} # return existing UUID
else:
new_user = User(uid=str(uuid.uuid4()), openai_key=item.openai_key)
db.add(new_user)
db.commit()
db.refresh(new_user)
return {"uid": new_user.uid}
@app.post("/assist")
async def assist(item: AssistItem):
db: Session = SessionLocal()
user = db.query(User).filter(User.uid == item.uid).first()
if not user:
raise HTTPException(status_code=400, detail="Invalid uid")
# Call OpenAI
openai.api_key = user.openai_key
response = openai_text_call(item.prompt, model=item.version)
# Update the last time assist was called
user.last_assist = datetime.now()
# Store the history
new_history = AndroidHistory(
uid=item.uid, question=item.prompt, answer=response["text"]
)
db.add(new_history)
db.commit()
return response
@app.get("/get_history/{uid}")
async def get_history(uid: str):
db: Session = SessionLocal()
history = db.query(BrowserHistory).filter(BrowserHistory.uid == uid).all()
browser_history = db.query(AndroidHistory).filter(AndroidHistory.uid == uid).all()
commands = db.query(Command).filter(Command.uid == uid).all()
try:
with open(f"{uid}_events.txt", "r") as f:
events = f.read().split(",")
except FileNotFoundError:
events = ""
return {
"events": events,
"history": [h.__dict__ for h in history],
"browser_history": [h.__dict__ for h in browser_history],
"commands": [c.__dict__ for c in commands],
}
@app.post("/saveurl")
async def saveurl(item: SaveURLItem):
db: Session = SessionLocal()
new_browser_history = BrowserHistory(
uid=item.uid, machineid=item.machineid, url=item.url
)
db.add(new_browser_history)
db.commit()
db.refresh(new_browser_history)
return {"message": "Browser history saved"}
def assist_interface(uid, prompt, gpt_version):
client = TestClient(app)
response = client.post(
"/assist",
json={"uid": uid, "prompt": prompt, "version": gpt_version},
)
return generate_html_response_from_openai(response.text)
def get_user_interface(uid):
db: Session = SessionLocal()
user = db.query(User).filter(User.uid == uid).first()
if not user:
return {"message": "No user with this uid found"}
return str(user)
class HighlightRenderer(mistune.HTMLRenderer):
def block_code(self, code, info=None):
if info:
lexer = get_lexer_by_name(info, stripall=True)
formatter = html.HtmlFormatter()
return highlight(code, lexer, formatter)
return "<pre><code>" + mistune.escape(code) + "</code></pre>"
def generate_html_response_from_openai(openai_response):
r"""
This is used by the gradio to extract all of the user
data and write it out as a giant json blob that can be easily diplayed.
>>>
>>> data = {'text': 'This is a test'}
>>> generate_html_response_from_openai(json.dumps(data))
'<html><p>This is a test</p>\n</html>'
"""
openai_response = json.loads(openai_response)
openai_response = openai_response["text"]
markdown = mistune.create_markdown(renderer=HighlightRenderer())
openai_response = markdown(openai_response)
return f"<html>{openai_response}</html>"
def get_assist_interface():
gpt_version_dropdown = components.Dropdown(label="GPT Version", choices=LANGS)
return Interface(
fn=assist_interface,
inputs=[
components.Textbox(label="UID", type="text"),
components.Textbox(label="Prompt", type="text"),
gpt_version_dropdown,
],
outputs="html",
title="OpenAI Text Generation",
description="Generate text using OpenAI's GPT-4 model.",
)
def get_db_interface():
return Interface(
fn=get_user_interface,
inputs="text",
outputs="text",
title="Get User Details",
description="Get user details from the database",
)
## The register interface uses this weird syntax to make sure we don't copy and
## paste quotes in the uid when we output it
def register_interface(openai_key):
client = TestClient(app)
response = client.post(
"/register",
json={"openai_key": openai_key},
)
return response.json()
def get_register_interface():
def wrapper(openai_key):
result = register_interface(openai_key)
return f"""<p id='uid'>{result["uid"]}</p>
<button onclick="navigator.clipboard.writeText(document.getElementById('uid').innerText)">
Copy to clipboard
</button>"""
return Interface(
fn=wrapper,
inputs=[components.Textbox(label="OpenAI Key", type="text")],
outputs=components.HTML(),
title="Register New User",
description="Register a new user by entering an OpenAI key.",
)
def get_history_interface(uid):
client = TestClient(app)
response = client.get(f"/get_history/{uid}")
return response.json()
def get_history_gradio_interface():
return Interface(
fn=get_history_interface,
inputs=[components.Textbox(label="UID", type="text")],
outputs="json",
title="Get User History",
description="Get the history of questions and answers for a given user.",
)
def add_command_interface(uid, command):
client = TestClient(app)
response = client.post(
"/add_command",
json={"uid": uid, "command": command},
)
return response.json()
@app.get("/.well-known/ai-plugin.json")
async def plugin_manifest(request: Request):
host = request.headers["host"]
with open(".well-known/ai-plugin.json") as f:
text = f.read().replace("PLUGIN_HOSTNAME", "https://posix4e-puppet.hf.space/")
return JSONResponse(content=json.loads(text))
@app.get("/openapi.yaml")
async def openai_yaml(request: Request):
host = request.headers["host"]
with open(".well-known/openapi.yaml") as f:
text = f.read().replace("PLUGIN_HOSTNAME", "https://posix4e-puppet.hf.space/")
return JSONResponse(content=json.loads(text))
@app.get("/detectcommand/{command}")
async def get_command(command: str, item: AssistItem):
db: Session = SessionLocal()
user = db.query(User).filter(User.uid == item.uid).first()
if not user:
raise HTTPException(status_code=400, detail="Invalid uid")
openai.api_key = user.openai_key
response = openai_text_call(item.prompt, model=item.version)
return JSONResponse(content=response, status_code=200)
@app.get("/logo.png")
async def plugin_logo():
return FileResponse("/.well-known/logo.jpeg")
def get_add_command_interface():
return Interface(
fn=add_command_interface,
inputs=[
components.Textbox(label="UID", type="text"),
components.Textbox(label="Command", type="text"),
],
outputs="json",
title="Add Command",
description="Add a new command for a given user.",
)
app = mount_gradio_app(
app,
TabbedInterface(
[
get_assist_interface(),
get_db_interface(),
get_register_interface(),
get_history_gradio_interface(),
get_add_command_interface(),
]
),
path="/",
)
if __name__ == "__main__":
config = Config("backend:app", host="0.0.0.0", port=7860, reload=True)
server = Server(config)
server.run()
|