AWeirdDev commited on
Commit
8808472
·
verified ·
1 Parent(s): f4fee37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
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