Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -94,7 +94,19 @@ def format_status(remaining, reset_times):
|
|
94 |
with gr.Blocks() as app:
|
95 |
session_id = gr.State(str(time.time()))
|
96 |
|
97 |
-
gr.Markdown("
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
|
99 |
with gr.Row():
|
100 |
prompt = gr.Textbox(lines=3, placeholder="Enter your prompt here...", label="Prompt")
|
|
|
94 |
with gr.Blocks() as app:
|
95 |
session_id = gr.State(str(time.time()))
|
96 |
|
97 |
+
gr.Markdown("""
|
98 |
+
# π€ BrtGPT-124m-Base Text Generation
|
99 |
+
|
100 |
+
Generate text using the BrtGPT-124m-Base model with professional rate limiting, Currently, we have limits for anonymous (no login function) usage directly from here or as API;
|
101 |
+
|
102 |
+
**Rate Limits:**
|
103 |
+
- β±οΈ Minute: 3 requests per minute
|
104 |
+
- π Hour: 50 requests per hour
|
105 |
+
- π
Day: 250 requests per day
|
106 |
+
When the website is added and the login system is added, we will change the Rate Limit numbers according to the subscription and subscription, sorry for the Rate Limit but it is the only way to prevent very long queues and Spam!
|
107 |
+
Also, if the infrastructure is insufficient, we will strengthen the GPU!
|
108 |
+
NOTE: Rate Limit is based on IP. LIMIT CANNOT BE RESET according to Browser, API, Interface!
|
109 |
+
""")
|
110 |
|
111 |
with gr.Row():
|
112 |
prompt = gr.Textbox(lines=3, placeholder="Enter your prompt here...", label="Prompt")
|