Spaces:
Sleeping
Sleeping
Update Gradio_UI.py
Browse files- Gradio_UI.py +22 -0
Gradio_UI.py
CHANGED
@@ -262,6 +262,28 @@ class GradioUI:
|
|
262 |
import gradio as gr
|
263 |
|
264 |
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
stored_messages = gr.State([])
|
266 |
file_uploads_log = gr.State([])
|
267 |
chatbot = gr.Chatbot(
|
|
|
262 |
import gradio as gr
|
263 |
|
264 |
with gr.Blocks(fill_height=True) as demo:
|
265 |
+
gr.Markdown(
|
266 |
+
"""
|
267 |
+
# 🤖 Agent Chain Detective
|
268 |
+
### Your AI Assistant for Blockchain Wallet Analysis
|
269 |
+
|
270 |
+
This is a proof of concept for analyzing wallet activities across different blockchain networks.
|
271 |
+
|
272 |
+
**Supported Networks:** ETH, Base, BSC, Gnosis
|
273 |
+
|
274 |
+
**Example Query:**
|
275 |
+
`I want to check the activity of wallet 0x123... on the Ethereum network`
|
276 |
+
|
277 |
+
**Note:**
|
278 |
+
- Limited context window (only last 50 transactions)
|
279 |
+
- Please avoid spam and excessive requests
|
280 |
+
- This is a demo version with basic functionality
|
281 |
+
|
282 |
+
**Connect with me:**
|
283 |
+
- 🐦 Twitter: [turbopila](https://x.com/turbopila)
|
284 |
+
- 💻 GitHub: [renzo4web](https://github.com/renzo4web)
|
285 |
+
"""
|
286 |
+
)
|
287 |
stored_messages = gr.State([])
|
288 |
file_uploads_log = gr.State([])
|
289 |
chatbot = gr.Chatbot(
|