Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import os
|
| 2 |
import gradio as gr
|
| 3 |
import requests
|
|
|
|
| 1 |
+
# Hey, stranger! this code is for use of free rate of gemini llm
|
| 2 |
+
# which is limited by RPM (15/30). Testing has shown that if I put
|
| 3 |
+
# request delay 10 then search drops out timed out.
|
| 4 |
+
# Nevertheless, it scrored 35% which is good for me while two questions
|
| 5 |
+
# were dropped due to exceeding RPM. So, it is still possible to improve,
|
| 6 |
+
# e.g. deploying gemini 2.0 flash lite which has double RPM limit.
|
| 7 |
+
# Try it out!
|
| 8 |
+
|
| 9 |
import os
|
| 10 |
import gradio as gr
|
| 11 |
import requests
|