Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
|
2 |
import streamlit as st
|
3 |
-
from
|
4 |
-
|
5 |
-
|
6 |
-
|
|
|
7 |
|
8 |
class GroupTherapyAgent:
|
9 |
def __init__(self, model, tokenizer):
|
|
|
1 |
|
2 |
import streamlit as st
|
3 |
+
from huggingface_hub import InferenceClient
|
4 |
+
|
5 |
+
client = InferenceClient(
|
6 |
+
"mistralai/Mistral-7B-Instruct-v0.1"
|
7 |
+
)
|
8 |
|
9 |
class GroupTherapyAgent:
|
10 |
def __init__(self, model, tokenizer):
|