CreitinGameplays
commited on
Commit
•
9f43303
1
Parent(s):
6517e51
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,7 @@ import gradio as gr
|
|
3 |
def conversation(prompt="", max_tokens=128):
|
4 |
# Integrate your Bloom 3b model here to generate response based on prompt and max_tokens
|
5 |
# Replace this with the actual call to your Bloom 3b model
|
|
|
6 |
response = "Bloom 3b is currently unavailable. Try again later!"
|
7 |
return response
|
8 |
|
|
|
3 |
def conversation(prompt="", max_tokens=128):
|
4 |
# Integrate your Bloom 3b model here to generate response based on prompt and max_tokens
|
5 |
# Replace this with the actual call to your Bloom 3b model
|
6 |
+
gr.load("models/CreitinGameplays/bloom-3b-conversational")
|
7 |
response = "Bloom 3b is currently unavailable. Try again later!"
|
8 |
return response
|
9 |
|