File size: 963 Bytes
8b90ad5 ecd9090 82d866a ecd9090 2eb1363 967efaf 0250d76 fac22d0 fce8087 b9c73b1 696db06 32b76d6 82d866a 32b76d6 82d866a 32b76d6 |
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 |
import Linlada
from fastapi import FastAPI
import asyncio
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI()
app.add_middleware( # add the middleware
CORSMiddleware,
allow_credentials=True, # allow credentials
allow_origins=["*"], # allow all origins
allow_methods=["*"], # allow all methods
allow_headers=["*"], # allow all headers
)
@app.get("/")
def hello():
return "Hello, I'm Artist"
async def generate(prompt):
response = await Linlada._create_completion(model='gpt-4', messages=[
{"role": "user", "content": prompt}], stream=True)
chat = list(response)
sentence = ''.join(chat)
return sentence
@app.get('/linlada/{prompt}')
def generate_image_route(prompt: str):
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
result = loop.run_until_complete(generate(prompt))
loop.close()
return result
|