Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -106,6 +106,13 @@ A4 = gr.load(
|
|
106 |
allow_flagging="never",
|
107 |
examples=["A gigantic celtic leprechaun wandering the streets of downtown Atlanta","A child eating pizza in a Brazilian favela"])
|
108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
mf_transcribe = gr.Interface(
|
110 |
fn=transcribe,
|
111 |
inputs=[
|
@@ -136,5 +143,5 @@ yt_transcribe = gr.Interface(
|
|
136 |
allow_flagging="never",
|
137 |
)
|
138 |
|
139 |
-
clp = gr.TabbedInterface([A1, mf_transcribe, yt_transcribe, A3, A4], ["Chat", "Transcribe", "Transcribe YouTube Videos", "Describe", "Create"], theme= gr.themes.Glass(primary_hue="neutral", neutral_hue="slate"))
|
140 |
clp.queue().launch()
|
|
|
106 |
allow_flagging="never",
|
107 |
examples=["A gigantic celtic leprechaun wandering the streets of downtown Atlanta","A child eating pizza in a Brazilian favela"])
|
108 |
|
109 |
+
A5 = gr.load(
|
110 |
+
"models/google/gemma-7b",
|
111 |
+
title=" ",
|
112 |
+
description="Writer's block? Enter your text and let COLLEAGUE assist you",
|
113 |
+
examples=["It is our","In the interim, we"])
|
114 |
+
theme= gr.themes.Glass(primary_hue="neutral", neutral_hue="slate"))
|
115 |
+
|
116 |
mf_transcribe = gr.Interface(
|
117 |
fn=transcribe,
|
118 |
inputs=[
|
|
|
143 |
allow_flagging="never",
|
144 |
)
|
145 |
|
146 |
+
clp = gr.TabbedInterface([A1, A5, mf_transcribe, yt_transcribe, A3, A4], ["Chat", "Write", "Transcribe", "Transcribe YouTube Videos", "Describe", "Create"], theme= gr.themes.Glass(primary_hue="neutral", neutral_hue="slate"))
|
147 |
clp.queue().launch()
|