p3nguknight commited on
Commit
70a2c7c
·
1 Parent(s): 43e9024

Add links to spaces and repo

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -55,7 +55,23 @@ def update_conversation_state(state_index, states):
55
  initial_state, conversation_states = simulate_conversation()
56
 
57
  with gr.Blocks() as demo:
58
- gr.Markdown("# Agent Inspector")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  state_counter = gr.State(-1)
61
 
 
55
  initial_state, conversation_states = simulate_conversation()
56
 
57
  with gr.Blocks() as demo:
58
+ gr.Markdown(
59
+ """# 🕵️ Agent Inspector
60
+
61
+ Debugging agent-based applications can be tricky!
62
+
63
+ Agent Inspector is a Gradio component designed to make this process easier and more transparent.
64
+ Inspired by tools like the [ADK web](https://github.com/google/adk-web) debug panel, Agent Inspector brings similar functionality to the Gradio ecosystem.
65
+ Whether you're building, testing, or fine-tuning your agent, Agent Inspector helps you understand what's happening under the hood.
66
+
67
+ Demo App with ADK :
68
+ [![Hugging Face Spaces](https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-Spaces-blue)](https://huggingface.co/spaces/Agents-MCP-Hackathon/adk-gradio?logs=container)
69
+
70
+ Github repo :
71
+ [![adk-gradio](https://img.shields.io/badge/Github-ADK--gradio-blue)](https://github.com/francoislanc/adk-gradio)
72
+
73
+ """
74
+ )
75
 
76
  state_counter = gr.State(-1)
77