Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1074,6 +1074,7 @@ Supported features:
|
|
| 1074 |
- ❓ **FAQ-style Q&A based on uploaded documents** (RAG-based)
|
| 1075 |
- 🌐 **Live Web Search** (Online RAG + GPT post-processing summary)
|
| 1076 |
- 📅 **Real-time Worldwide Date & Time** (LLM + GeoLocator + TimezoneFinder, supports any city globally)
|
|
|
|
| 1077 |
- ➗ **Math and Logic Calculations** (from scientific equations to financial or tax-related use cases)
|
| 1078 |
- 💬 **General Chatting / Reasoning**
|
| 1079 |
|
|
@@ -1085,8 +1086,9 @@ You can upload a document and ask related questions, or just type a question dir
|
|
| 1085 |
2. What are the key ideas mentioned in this file? *(→ RAG QA Agent)*
|
| 1086 |
3. What is LangChain used for? | What are the latest trends in AI startups in 2025? | Tell me the most recent breakthrough in quantum computing. *(→ Online Rag Agent)*
|
| 1087 |
4. What's the current time in London? | What’s today’s date in New York? | What time is it in Taipei right now? *(→ Time Agent)*
|
| 1088 |
-
5.
|
| 1089 |
-
6.
|
|
|
|
| 1090 |
"""
|
| 1091 |
|
| 1092 |
demo = gr.TabbedInterface(
|
|
|
|
| 1074 |
- ❓ **FAQ-style Q&A based on uploaded documents** (RAG-based)
|
| 1075 |
- 🌐 **Live Web Search** (Online RAG + GPT post-processing summary)
|
| 1076 |
- 📅 **Real-time Worldwide Date & Time** (LLM + GeoLocator + TimezoneFinder, supports any city globally)
|
| 1077 |
+
- 🌦️ **Global Weather** (LLM Time Reasoning + Timezone + Few-Shot, supports fuzzy queries, 3-day forecast, 7-day history, hourly precision)
|
| 1078 |
- ➗ **Math and Logic Calculations** (from scientific equations to financial or tax-related use cases)
|
| 1079 |
- 💬 **General Chatting / Reasoning**
|
| 1080 |
|
|
|
|
| 1086 |
2. What are the key ideas mentioned in this file? *(→ RAG QA Agent)*
|
| 1087 |
3. What is LangChain used for? | What are the latest trends in AI startups in 2025? | Tell me the most recent breakthrough in quantum computing. *(→ Online Rag Agent)*
|
| 1088 |
4. What's the current time in London? | What’s today’s date in New York? | What time is it in Taipei right now? *(→ Time Agent)*
|
| 1089 |
+
5. Will it rain in New York in 2 hours? | Is it going to be hot tomorrow in Nottingham? | What was the weather like in Paris two days ago? | Is it gonna rain later? *(→ Weather Agent)*
|
| 1090 |
+
6. If I earn $15 per hour and work 8 hours a day for 5 days, how much will I earn? | What is 5 * 22.5 / sin(45) | 3^3 + 4^2 | Calculate 25 * log(1000) | What is the square root of 144 *(→ Math Agent)*
|
| 1091 |
+
7. Who are you? | What can you do? | What is the meaning of life? *(→ General Chat Agent)*
|
| 1092 |
"""
|
| 1093 |
|
| 1094 |
demo = gr.TabbedInterface(
|