Update app.py
Browse files
app.py
CHANGED
@@ -8,13 +8,11 @@ from pydantic import BaseModel
|
|
8 |
|
9 |
from huggingface_hub import InferenceClient
|
10 |
|
|
|
11 |
client = InferenceClient(
|
12 |
"mistralai/Mistral-7B-Instruct-v0.2"
|
13 |
)
|
14 |
|
15 |
-
app = FastAPI()
|
16 |
-
client = Client("AWeirdDev/mistral-7b-instruct-v0.2")
|
17 |
-
|
18 |
class Message(BaseModel):
|
19 |
role: Literal["user", "assistant"]
|
20 |
content: str
|
|
|
8 |
|
9 |
from huggingface_hub import InferenceClient
|
10 |
|
11 |
+
app = FastAPI()
|
12 |
client = InferenceClient(
|
13 |
"mistralai/Mistral-7B-Instruct-v0.2"
|
14 |
)
|
15 |
|
|
|
|
|
|
|
16 |
class Message(BaseModel):
|
17 |
role: Literal["user", "assistant"]
|
18 |
content: str
|