Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -12,6 +12,15 @@ import streamlit as st
|
|
12 |
from huggingface_hub import AsyncInferenceClient, login
|
13 |
import time
|
14 |
import os
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
launch_time = datetime.datetime.utcnow()
|
17 |
|
@@ -78,7 +87,6 @@ SDT = AsyncInferenceClient(model=sdxl_turbo)
|
|
78 |
PT = AsyncInferenceClient(model=proteus)
|
79 |
LLM = AsyncInferenceClient(model="openchat/openchat-3.5-0106")
|
80 |
RF = AsyncInferenceClient(model="stabilityai/stable-diffusion-xl-refiner-1.0")
|
81 |
-
C = AsyncInferenceClient(model="llava-hf/vip-llava-7b-hf")
|
82 |
|
83 |
|
84 |
def ec(x, fd="<|image|>", sd="<|image|>"):
|
|
|
12 |
from huggingface_hub import AsyncInferenceClient, login
|
13 |
import time
|
14 |
import os
|
15 |
+
from gradio_client import Client
|
16 |
+
|
17 |
+
async def C(x):
|
18 |
+
client = Client("https://ybelkada-llava-1-5-dlai.hf.space/")
|
19 |
+
result = client.predict(
|
20 |
+
"Make a detailed description of the image. This would be sufficient for an LLM to answer questions about it with just your answer.",
|
21 |
+
"ip.png",
|
22 |
+
api_name="/predict"
|
23 |
+
)
|
24 |
|
25 |
launch_time = datetime.datetime.utcnow()
|
26 |
|
|
|
87 |
PT = AsyncInferenceClient(model=proteus)
|
88 |
LLM = AsyncInferenceClient(model="openchat/openchat-3.5-0106")
|
89 |
RF = AsyncInferenceClient(model="stabilityai/stable-diffusion-xl-refiner-1.0")
|
|
|
90 |
|
91 |
|
92 |
def ec(x, fd="<|image|>", sd="<|image|>"):
|