Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,7 @@ import gradio as gr
|
|
| 2 |
|
| 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
|
|
|
|
| 2 |
|
| 3 |
def conversation(prompt="", max_tokens=128):
|
| 4 |
# Integrate your Bloom 3b model here to generate response based on prompt and max_tokens
|
| 5 |
+
gr.load("models/CreitinGameplays/bloom-3b-conversational").launch()
|
| 6 |
# Replace this with the actual call to your Bloom 3b model
|
| 7 |
response = "Bloom 3b is currently unavailable. Try again later!"
|
| 8 |
return response
|