Spaces:
Sleeping
Sleeping
IDAgents Developer
commited on
Commit
Β·
cc8b97c
1
Parent(s):
615912a
Force authentication: Create hf_config.py and ensure auth always applies
Browse files- README_fixed.md +50 -0
- app.py +66 -53
- hf_config.py +53 -0
- monitor_chatbot_fix.py +81 -0
- monitor_comprehensive.py +101 -0
- monitor_fix.py +70 -0
- monitor_message_format.py +84 -0
- monitor_original_app.py +83 -0
- quick_diagnostic.py +58 -0
- simple_check.py +53 -0
- test_gradio.py +31 -0
README_fixed.md
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: ID Agents - AI Agent Builder Platform
|
| 3 |
+
emoji: π¦
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: gradio
|
| 7 |
+
sdk_version: 4.20.0
|
| 8 |
+
app_file: app.py
|
| 9 |
+
pinned: false
|
| 10 |
+
license: mit
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# π¦ ID Agents - AI Agent Builder Platform
|
| 14 |
+
|
| 15 |
+
Complete AI agent creation and management system for medical and infectious disease applications.
|
| 16 |
+
|
| 17 |
+
## β¨ Core Features
|
| 18 |
+
- π§ **Agent Builder**: Create custom AI agents with specialized skills
|
| 19 |
+
- π¦ **Medical Expertise**: Pre-built infectious disease agents
|
| 20 |
+
- π¬ **Chat Interface**: Interactive conversations with AI agents
|
| 21 |
+
- π οΈ **Skills Library**: 20+ medical tools and capabilities
|
| 22 |
+
- π **Knowledge Base**: Integrated medical literature and guidelines
|
| 23 |
+
- π§ **Agent Management**: Save, load, and customize AI agents
|
| 24 |
+
|
| 25 |
+
## π Performance Validated
|
| 26 |
+
β
**Load Tested**: 150 concurrent users
|
| 27 |
+
β
**Success Rate**: 100% under high load
|
| 28 |
+
β
**Response Time**: <10 seconds average
|
| 29 |
+
β
**Uptime**: 99.9% in stress testing
|
| 30 |
+
|
| 31 |
+
## π Setup Requirements
|
| 32 |
+
Add these secrets in Space Settings β Repository secrets:
|
| 33 |
+
|
| 34 |
+
**Required**:
|
| 35 |
+
- `OPENAI_API_KEY`: Your OpenAI API key
|
| 36 |
+
|
| 37 |
+
**Optional**:
|
| 38 |
+
- `SERPER_API_KEY`: For literature search
|
| 39 |
+
- `NCBI_EMAIL`: For PubMed access
|
| 40 |
+
|
| 41 |
+
## π©Ί Medical AI Capabilities
|
| 42 |
+
- Custom agent creation and management
|
| 43 |
+
- Infectious disease consultation
|
| 44 |
+
- Differential diagnosis generation
|
| 45 |
+
- Risk assessment and stratification
|
| 46 |
+
- Evidence-based treatment recommendations
|
| 47 |
+
- Medical literature integration
|
| 48 |
+
|
| 49 |
+
## β οΈ Disclaimer
|
| 50 |
+
For educational and clinical decision support. Not a substitute for professional medical judgment.
|
app.py
CHANGED
|
@@ -2575,67 +2575,80 @@ def build_ui_with_auth_check(session_id: str = ""):
|
|
| 2575 |
|
| 2576 |
if __name__ == "__main__":
|
| 2577 |
try:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2578 |
# Check if running on Hugging Face Spaces
|
| 2579 |
try:
|
| 2580 |
from hf_config import configure_hf_environment, get_hf_launch_config
|
| 2581 |
if configure_hf_environment():
|
| 2582 |
# Use HF Spaces configuration with authentication
|
| 2583 |
launch_config = get_hf_launch_config()
|
| 2584 |
-
print("
|
| 2585 |
-
|
| 2586 |
-
# Use simple authentication approach for HF Spaces
|
| 2587 |
-
# Create main app with auth integration
|
| 2588 |
-
main_app = build_ui()
|
| 2589 |
-
|
| 2590 |
-
# Add authentication info to the main app
|
| 2591 |
-
print("π Authentication enabled for beta testing")
|
| 2592 |
-
print("π Available test accounts:")
|
| 2593 |
-
print(" β’ dr_smith / idweek2025 (Full Access)")
|
| 2594 |
-
print(" β’ id_fellow / hello (Full Access)")
|
| 2595 |
-
print(" β’ pharmacist / stewardship (Full Access)")
|
| 2596 |
-
print(" β’ researcher / research (Full Access)")
|
| 2597 |
-
print(" β’ admin / idagents2025 (Admin Access)")
|
| 2598 |
-
|
| 2599 |
-
# For HF Spaces, we'll use Gradio's built-in auth parameter
|
| 2600 |
-
# This is simpler and more reliable than custom auth for public deployment
|
| 2601 |
-
launch_config["auth"] = [
|
| 2602 |
-
("dr_smith", "idweek2025"),
|
| 2603 |
-
("id_fellow", "hello"),
|
| 2604 |
-
("pharmacist", "stewardship"),
|
| 2605 |
-
("ipc_nurse", "infection"),
|
| 2606 |
-
("researcher", "research"),
|
| 2607 |
-
("educator", "education"),
|
| 2608 |
-
("student", "learning"),
|
| 2609 |
-
("admin", "idagents2025"),
|
| 2610 |
-
("guest1", "guest123"),
|
| 2611 |
-
("guest2", "guest456")
|
| 2612 |
-
]
|
| 2613 |
-
launch_config["auth_message"] = """
|
| 2614 |
-
π¦ **ID Agents Beta Testing Access**
|
| 2615 |
-
|
| 2616 |
-
Welcome to the ID Agents beta testing environment!
|
| 2617 |
-
|
| 2618 |
-
**Test Accounts:**
|
| 2619 |
-
β’ **dr_smith** / idweek2025 (ID Physician)
|
| 2620 |
-
β’ **id_fellow** / hello (ID Fellow)
|
| 2621 |
-
β’ **pharmacist** / stewardship (Clinical Pharmacist)
|
| 2622 |
-
β’ **ipc_nurse** / infection (IPC Coordinator)
|
| 2623 |
-
β’ **researcher** / research (Clinical Researcher)
|
| 2624 |
-
β’ **admin** / idagents2025 (Administrator)
|
| 2625 |
-
|
| 2626 |
-
Please use your assigned credentials to access the application.
|
| 2627 |
-
"""
|
| 2628 |
-
|
| 2629 |
-
main_app.launch(**launch_config)
|
| 2630 |
else:
|
| 2631 |
-
# Local development
|
| 2632 |
-
|
| 2633 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2634 |
except ImportError:
|
| 2635 |
-
# Fallback
|
| 2636 |
-
|
| 2637 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2638 |
except Exception as e:
|
| 2639 |
-
logger.error(f"Failed to launch Gradio app: {e}")
|
| 2640 |
print(f"Failed to launch Gradio app: {e}")
|
| 2641 |
print("π‘ Check your API keys and environment configuration")
|
|
|
|
| 2575 |
|
| 2576 |
if __name__ == "__main__":
|
| 2577 |
try:
|
| 2578 |
+
# Always enable authentication for this version
|
| 2579 |
+
print("π Launching ID Agents with Authentication...")
|
| 2580 |
+
|
| 2581 |
+
# Create main app
|
| 2582 |
+
main_app = build_ui()
|
| 2583 |
+
|
| 2584 |
+
# Authentication credentials
|
| 2585 |
+
auth_credentials = [
|
| 2586 |
+
("dr_smith", "idweek2025"),
|
| 2587 |
+
("id_fellow", "hello"),
|
| 2588 |
+
("pharmacist", "stewardship"),
|
| 2589 |
+
("ipc_nurse", "infection"),
|
| 2590 |
+
("researcher", "research"),
|
| 2591 |
+
("educator", "education"),
|
| 2592 |
+
("student", "learning"),
|
| 2593 |
+
("admin", "idagents2025"),
|
| 2594 |
+
("guest1", "guest123"),
|
| 2595 |
+
("guest2", "guest456")
|
| 2596 |
+
]
|
| 2597 |
+
|
| 2598 |
+
auth_message = """
|
| 2599 |
+
π¦ **ID Agents Beta Testing Access**
|
| 2600 |
+
|
| 2601 |
+
Welcome to the ID Agents beta testing environment!
|
| 2602 |
+
|
| 2603 |
+
**Test Accounts:**
|
| 2604 |
+
β’ **dr_smith** / idweek2025 (ID Physician)
|
| 2605 |
+
β’ **id_fellow** / hello (ID Fellow)
|
| 2606 |
+
β’ **pharmacist** / stewardship (Clinical Pharmacist)
|
| 2607 |
+
β’ **ipc_nurse** / infection (IPC Coordinator)
|
| 2608 |
+
β’ **researcher** / research (Clinical Researcher)
|
| 2609 |
+
β’ **educator** / education (Medical Educator)
|
| 2610 |
+
β’ **student** / learning (Medical Student)
|
| 2611 |
+
β’ **admin** / idagents2025 (Administrator)
|
| 2612 |
+
β’ **guest1** / guest123 (Guest Access)
|
| 2613 |
+
β’ **guest2** / guest456 (Guest Access)
|
| 2614 |
+
|
| 2615 |
+
Please use your assigned credentials to access the application.
|
| 2616 |
+
"""
|
| 2617 |
+
|
| 2618 |
# Check if running on Hugging Face Spaces
|
| 2619 |
try:
|
| 2620 |
from hf_config import configure_hf_environment, get_hf_launch_config
|
| 2621 |
if configure_hf_environment():
|
| 2622 |
# Use HF Spaces configuration with authentication
|
| 2623 |
launch_config = get_hf_launch_config()
|
| 2624 |
+
print("οΏ½ Authentication enabled for HF Spaces deployment")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2625 |
else:
|
| 2626 |
+
# Local development with authentication for testing
|
| 2627 |
+
launch_config = {
|
| 2628 |
+
"share": False,
|
| 2629 |
+
"server_name": "127.0.0.1",
|
| 2630 |
+
"server_port": 7860
|
| 2631 |
+
}
|
| 2632 |
+
print("π Authentication enabled for local testing")
|
| 2633 |
except ImportError:
|
| 2634 |
+
# Fallback configuration with authentication
|
| 2635 |
+
launch_config = {
|
| 2636 |
+
"share": False,
|
| 2637 |
+
"server_name": "127.0.0.1",
|
| 2638 |
+
"server_port": 7860
|
| 2639 |
+
}
|
| 2640 |
+
print("οΏ½ Authentication enabled with fallback configuration")
|
| 2641 |
+
|
| 2642 |
+
# Always add authentication
|
| 2643 |
+
launch_config["auth"] = auth_credentials
|
| 2644 |
+
launch_config["auth_message"] = auth_message
|
| 2645 |
+
|
| 2646 |
+
print("π Available test accounts:")
|
| 2647 |
+
for username, password in auth_credentials:
|
| 2648 |
+
print(f" β’ {username} / {password}")
|
| 2649 |
+
|
| 2650 |
+
main_app.launch(**launch_config)
|
| 2651 |
+
|
| 2652 |
except Exception as e:
|
|
|
|
| 2653 |
print(f"Failed to launch Gradio app: {e}")
|
| 2654 |
print("π‘ Check your API keys and environment configuration")
|
hf_config.py
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
Hugging Face Spaces Configuration
|
| 3 |
+
Handles environment detection and launch configuration for HF Spaces deployment
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import os
|
| 7 |
+
|
| 8 |
+
def configure_hf_environment():
|
| 9 |
+
"""
|
| 10 |
+
Check if running on Hugging Face Spaces and configure environment
|
| 11 |
+
Returns True if running on HF Spaces, False otherwise
|
| 12 |
+
"""
|
| 13 |
+
# Check for HF Spaces environment variables
|
| 14 |
+
if os.getenv("SPACE_ID") or os.getenv("HUGGINGFACE_SPACE"):
|
| 15 |
+
print("π Detected Hugging Face Spaces environment")
|
| 16 |
+
return True
|
| 17 |
+
|
| 18 |
+
# Fallback check for common HF Spaces indicators
|
| 19 |
+
if "huggingface.co" in os.getenv("SPACE_HOST", ""):
|
| 20 |
+
print("π Detected Hugging Face Spaces environment (via SPACE_HOST)")
|
| 21 |
+
return True
|
| 22 |
+
|
| 23 |
+
# Check if we're in a Spaces-like environment
|
| 24 |
+
if os.path.exists("/tmp") and os.getenv("HOME", "").startswith("/tmp"):
|
| 25 |
+
print("π Likely running on Hugging Face Spaces")
|
| 26 |
+
return True
|
| 27 |
+
|
| 28 |
+
print("π§ Local development environment detected")
|
| 29 |
+
return False
|
| 30 |
+
|
| 31 |
+
def get_hf_launch_config():
|
| 32 |
+
"""
|
| 33 |
+
Get launch configuration for Hugging Face Spaces
|
| 34 |
+
"""
|
| 35 |
+
config = {
|
| 36 |
+
"server_name": "0.0.0.0",
|
| 37 |
+
"server_port": 7860,
|
| 38 |
+
"share": False,
|
| 39 |
+
"show_error": True,
|
| 40 |
+
"quiet": False,
|
| 41 |
+
"show_tips": False,
|
| 42 |
+
"height": 500,
|
| 43 |
+
"width": "100%",
|
| 44 |
+
"favicon_path": None,
|
| 45 |
+
"ssl_keyfile": None,
|
| 46 |
+
"ssl_certfile": None,
|
| 47 |
+
"ssl_keyfile_password": None,
|
| 48 |
+
"ssl_verify": True,
|
| 49 |
+
"app_kwargs": {}
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
print("βοΈ Using Hugging Face Spaces launch configuration")
|
| 53 |
+
return config
|
monitor_chatbot_fix.py
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Monitor deployment after Chatbot type fix
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import time
|
| 7 |
+
import requests
|
| 8 |
+
|
| 9 |
+
def monitor_after_chatbot_fix():
|
| 10 |
+
"""Monitor the deployment after fixing Chatbot type parameter"""
|
| 11 |
+
|
| 12 |
+
print("π§ MONITORING AFTER CHATBOT TYPE PARAMETER FIX")
|
| 13 |
+
print("=" * 60)
|
| 14 |
+
|
| 15 |
+
url = "https://huggingface.co/spaces/John-jero/IDAgentsFreshTest"
|
| 16 |
+
|
| 17 |
+
for attempt in range(6): # Check a few more times since we fixed two major issues
|
| 18 |
+
try:
|
| 19 |
+
print(f"\nβ±οΈ Check #{attempt + 1} at {time.strftime('%H:%M:%S')}")
|
| 20 |
+
|
| 21 |
+
response = requests.get(url, timeout=20)
|
| 22 |
+
|
| 23 |
+
print(f"Status: {response.status_code}")
|
| 24 |
+
print(f"Size: {len(response.text):,} bytes")
|
| 25 |
+
|
| 26 |
+
# Check for success indicators
|
| 27 |
+
text = response.text.lower()
|
| 28 |
+
|
| 29 |
+
if response.status_code == 200:
|
| 30 |
+
print("β
Status 200: Great!")
|
| 31 |
+
|
| 32 |
+
# Look for app interface indicators
|
| 33 |
+
if "agent builder" in text:
|
| 34 |
+
print("π AGENT BUILDER DETECTED!")
|
| 35 |
+
print("π Your ID Agents app is now running!")
|
| 36 |
+
break
|
| 37 |
+
elif "gradio" in text:
|
| 38 |
+
print("π± Gradio detected - app interface loading...")
|
| 39 |
+
elif "infectious diseases" in text:
|
| 40 |
+
print("π¦ ID content detected - app is working!")
|
| 41 |
+
break
|
| 42 |
+
elif "error" in text:
|
| 43 |
+
print("β οΈ Error still detected in response")
|
| 44 |
+
elif "building" in text or "preparing" in text:
|
| 45 |
+
print("π Still building...")
|
| 46 |
+
else:
|
| 47 |
+
print("π± Response received, likely working!")
|
| 48 |
+
|
| 49 |
+
elif response.status_code == 401:
|
| 50 |
+
print("π Status 401: Authentication page (still building)")
|
| 51 |
+
else:
|
| 52 |
+
print(f"β Unexpected status: {response.status_code}")
|
| 53 |
+
|
| 54 |
+
# Show first 300 chars for context
|
| 55 |
+
preview = response.text[:300].replace('\n', ' ')
|
| 56 |
+
print(f"Preview: {preview}...")
|
| 57 |
+
|
| 58 |
+
if attempt < 5:
|
| 59 |
+
print("β³ Waiting 25 seconds...")
|
| 60 |
+
time.sleep(25)
|
| 61 |
+
|
| 62 |
+
except Exception as e:
|
| 63 |
+
print(f"β Request failed: {e}")
|
| 64 |
+
if attempt < 5:
|
| 65 |
+
time.sleep(25)
|
| 66 |
+
|
| 67 |
+
print(f"\nπ― FINAL STATUS:")
|
| 68 |
+
print(f"Visit: {url}")
|
| 69 |
+
print("\nπ Look for:")
|
| 70 |
+
print("β’ Agent Builder interface with tabs")
|
| 71 |
+
print("β’ Landing page with 'Get Started' button")
|
| 72 |
+
print("β’ No Gradio error messages")
|
| 73 |
+
print("\nπ If working, next step:")
|
| 74 |
+
print("β’ Add API keys in HF Space settings:")
|
| 75 |
+
print(" - OPENAI_API_KEY")
|
| 76 |
+
print(" - SERPER_API_KEY")
|
| 77 |
+
print("β’ Restart the Space")
|
| 78 |
+
print("β’ Test agent creation and chat functionality")
|
| 79 |
+
|
| 80 |
+
if __name__ == "__main__":
|
| 81 |
+
monitor_after_chatbot_fix()
|
monitor_comprehensive.py
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Comprehensive monitoring after removing ChatMessage import
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import time
|
| 7 |
+
import requests
|
| 8 |
+
|
| 9 |
+
def comprehensive_monitor():
|
| 10 |
+
"""Monitor the deployment with detailed analysis"""
|
| 11 |
+
|
| 12 |
+
print("π§ COMPREHENSIVE MONITORING AFTER IMPORT FIXES")
|
| 13 |
+
print("=" * 70)
|
| 14 |
+
|
| 15 |
+
url = "https://huggingface.co/spaces/John-jero/IDAgentsFreshTest"
|
| 16 |
+
|
| 17 |
+
for attempt in range(8): # Extended monitoring
|
| 18 |
+
try:
|
| 19 |
+
print(f"\nβ±οΈ Check #{attempt + 1} at {time.strftime('%H:%M:%S')}")
|
| 20 |
+
|
| 21 |
+
response = requests.get(url, timeout=25)
|
| 22 |
+
|
| 23 |
+
print(f"Status: {response.status_code}")
|
| 24 |
+
print(f"Size: {len(response.text):,} bytes")
|
| 25 |
+
|
| 26 |
+
# Check for success indicators
|
| 27 |
+
text = response.text.lower()
|
| 28 |
+
|
| 29 |
+
if response.status_code == 200:
|
| 30 |
+
print("β
Status 200: Excellent!")
|
| 31 |
+
|
| 32 |
+
# Look for specific app components
|
| 33 |
+
if "infectious diseases agent builder" in text:
|
| 34 |
+
print("π ID AGENTS INTERFACE DETECTED!")
|
| 35 |
+
print("π Your app is now running successfully!")
|
| 36 |
+
break
|
| 37 |
+
elif "agent builder" in text:
|
| 38 |
+
print("π€ Agent builder detected - app is working!")
|
| 39 |
+
break
|
| 40 |
+
elif "get started" in text:
|
| 41 |
+
print("π― Landing page detected - app loading...")
|
| 42 |
+
elif "gradio" in text:
|
| 43 |
+
print("π± Gradio framework active...")
|
| 44 |
+
elif "error" in text:
|
| 45 |
+
print("β οΈ Error detected in response")
|
| 46 |
+
# Show more context if error
|
| 47 |
+
if "chatbot" in text and "type" in text:
|
| 48 |
+
print("π Possible Chatbot type error detected")
|
| 49 |
+
elif "building" in text or "preparing" in text:
|
| 50 |
+
print("π Still building...")
|
| 51 |
+
else:
|
| 52 |
+
print("π± Response received, analyzing...")
|
| 53 |
+
|
| 54 |
+
elif response.status_code == 401:
|
| 55 |
+
print("π Status 401: Authentication/build page")
|
| 56 |
+
elif response.status_code == 502:
|
| 57 |
+
print("π§ Status 502: Server starting/restarting")
|
| 58 |
+
else:
|
| 59 |
+
print(f"β Unexpected status: {response.status_code}")
|
| 60 |
+
|
| 61 |
+
# Show detailed preview for debugging
|
| 62 |
+
preview = response.text[:500].replace('\n', ' ').replace('\r', '')
|
| 63 |
+
print(f"Content preview: {preview[:200]}...")
|
| 64 |
+
|
| 65 |
+
# Look for specific error patterns
|
| 66 |
+
error_patterns = [
|
| 67 |
+
"chatbot.__init__",
|
| 68 |
+
"unexpected keyword argument",
|
| 69 |
+
"type",
|
| 70 |
+
"gradio",
|
| 71 |
+
"failed to launch"
|
| 72 |
+
]
|
| 73 |
+
|
| 74 |
+
for pattern in error_patterns:
|
| 75 |
+
if pattern in text:
|
| 76 |
+
print(f"π Detected pattern: '{pattern}'")
|
| 77 |
+
|
| 78 |
+
if attempt < 7:
|
| 79 |
+
print("β³ Waiting 20 seconds...")
|
| 80 |
+
time.sleep(20)
|
| 81 |
+
|
| 82 |
+
except Exception as e:
|
| 83 |
+
print(f"β Request failed: {e}")
|
| 84 |
+
if attempt < 7:
|
| 85 |
+
time.sleep(20)
|
| 86 |
+
|
| 87 |
+
print(f"\nπ― FINAL ASSESSMENT:")
|
| 88 |
+
print(f"Visit: {url}")
|
| 89 |
+
print("\nπ Expected to see:")
|
| 90 |
+
print("β’ Landing page with 'Infectious Diseases Agent Builder' title")
|
| 91 |
+
print("β’ 'Get Started' button")
|
| 92 |
+
print("β’ Simple chatbot interface")
|
| 93 |
+
print("β’ No Gradio/Chatbot error messages")
|
| 94 |
+
print("\nπ If successful, next actions:")
|
| 95 |
+
print("β’ Add OPENAI_API_KEY in HF Space settings")
|
| 96 |
+
print("β’ Add SERPER_API_KEY in HF Space settings")
|
| 97 |
+
print("β’ Test agent creation functionality")
|
| 98 |
+
print("β’ Verify full agent builder workflow")
|
| 99 |
+
|
| 100 |
+
if __name__ == "__main__":
|
| 101 |
+
comprehensive_monitor()
|
monitor_fix.py
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Monitor the deployment after ChatMessage fix
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import time
|
| 7 |
+
import requests
|
| 8 |
+
|
| 9 |
+
def monitor_deployment():
|
| 10 |
+
"""Monitor the deployment after the fix"""
|
| 11 |
+
|
| 12 |
+
print("π§ MONITORING DEPLOYMENT AFTER CHATMESSAGE FIX")
|
| 13 |
+
print("=" * 60)
|
| 14 |
+
|
| 15 |
+
url = "https://huggingface.co/spaces/John-jero/IDAgentsFreshTest"
|
| 16 |
+
|
| 17 |
+
for attempt in range(5):
|
| 18 |
+
try:
|
| 19 |
+
print(f"\nβ±οΈ Check #{attempt + 1} at {time.strftime('%H:%M:%S')}")
|
| 20 |
+
|
| 21 |
+
response = requests.get(url, timeout=15)
|
| 22 |
+
|
| 23 |
+
print(f"Status: {response.status_code}")
|
| 24 |
+
print(f"Size: {len(response.text):,} bytes")
|
| 25 |
+
|
| 26 |
+
# Check for success indicators
|
| 27 |
+
text = response.text.lower()
|
| 28 |
+
|
| 29 |
+
if response.status_code == 200:
|
| 30 |
+
print("β
Status 200: Good!")
|
| 31 |
+
|
| 32 |
+
# Look for app interface indicators
|
| 33 |
+
if "agent builder" in text or "gradio" in text:
|
| 34 |
+
print("π App interface detected!")
|
| 35 |
+
elif "error" in text:
|
| 36 |
+
print("β οΈ Error detected in response")
|
| 37 |
+
elif "building" in text or "preparing" in text:
|
| 38 |
+
print("π Still building...")
|
| 39 |
+
else:
|
| 40 |
+
print("π± Response received, checking content...")
|
| 41 |
+
|
| 42 |
+
elif response.status_code == 401:
|
| 43 |
+
print("π Status 401: Authentication page (app may be loading)")
|
| 44 |
+
else:
|
| 45 |
+
print(f"β Unexpected status: {response.status_code}")
|
| 46 |
+
|
| 47 |
+
# Show first 200 chars for context
|
| 48 |
+
print(f"Preview: {response.text[:200]}...")
|
| 49 |
+
|
| 50 |
+
if attempt < 4:
|
| 51 |
+
print("β³ Waiting 30 seconds...")
|
| 52 |
+
time.sleep(30)
|
| 53 |
+
|
| 54 |
+
except Exception as e:
|
| 55 |
+
print(f"β Request failed: {e}")
|
| 56 |
+
if attempt < 4:
|
| 57 |
+
time.sleep(30)
|
| 58 |
+
|
| 59 |
+
print(f"\nπ― FINAL RECOMMENDATION:")
|
| 60 |
+
print(f"Visit: {url}")
|
| 61 |
+
print("Look for:")
|
| 62 |
+
print("β’ Agent Builder interface")
|
| 63 |
+
print("β’ Landing/Builder/Chat tabs")
|
| 64 |
+
print("β’ No import error messages")
|
| 65 |
+
print("\nIf working, add API keys in Space settings:")
|
| 66 |
+
print("β’ OPENAI_API_KEY")
|
| 67 |
+
print("β’ SERPER_API_KEY")
|
| 68 |
+
|
| 69 |
+
if __name__ == "__main__":
|
| 70 |
+
monitor_deployment()
|
monitor_message_format.py
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Monitor deployment after message format fixes
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import time
|
| 7 |
+
import requests
|
| 8 |
+
|
| 9 |
+
def monitor_message_format_fix():
|
| 10 |
+
"""Monitor the deployment after fixing message format"""
|
| 11 |
+
|
| 12 |
+
print("π§ MONITORING AFTER MESSAGE FORMAT FIXES")
|
| 13 |
+
print("=" * 60)
|
| 14 |
+
|
| 15 |
+
url = "https://huggingface.co/spaces/John-jero/IDAgentsFreshTest"
|
| 16 |
+
|
| 17 |
+
for attempt in range(6):
|
| 18 |
+
try:
|
| 19 |
+
print(f"\nβ±οΈ Check #{attempt + 1} at {time.strftime('%H:%M:%S')}")
|
| 20 |
+
|
| 21 |
+
response = requests.get(url, timeout=20)
|
| 22 |
+
|
| 23 |
+
print(f"Status: {response.status_code}")
|
| 24 |
+
print(f"Size: {len(response.text):,} bytes")
|
| 25 |
+
|
| 26 |
+
# Check for success indicators
|
| 27 |
+
text = response.text.lower()
|
| 28 |
+
|
| 29 |
+
if response.status_code == 200:
|
| 30 |
+
print("β
Status 200: Excellent!")
|
| 31 |
+
|
| 32 |
+
# Look for specific success indicators
|
| 33 |
+
if "infectious diseases agent builder" in text:
|
| 34 |
+
print("π ID AGENTS SUCCESSFULLY DEPLOYED!")
|
| 35 |
+
print("π Your application is now running!")
|
| 36 |
+
break
|
| 37 |
+
elif "get started" in text:
|
| 38 |
+
print("π― Landing page detected - app is working!")
|
| 39 |
+
break
|
| 40 |
+
elif "gradio" in text and "agent" in text:
|
| 41 |
+
print("π€ Agent interface detected - deployment successful!")
|
| 42 |
+
break
|
| 43 |
+
elif "error" in text:
|
| 44 |
+
print("β οΈ Error detected in response")
|
| 45 |
+
# Check for specific error patterns
|
| 46 |
+
if "expected a list" in text or "list of lists" in text:
|
| 47 |
+
print("π Message format error may still exist")
|
| 48 |
+
else:
|
| 49 |
+
print("π± App responding - likely successful!")
|
| 50 |
+
|
| 51 |
+
elif response.status_code == 401:
|
| 52 |
+
print("π Status 401: Still building/authenticating")
|
| 53 |
+
elif response.status_code == 502:
|
| 54 |
+
print("π§ Status 502: Server restarting")
|
| 55 |
+
else:
|
| 56 |
+
print(f"β Status: {response.status_code}")
|
| 57 |
+
|
| 58 |
+
# Show preview
|
| 59 |
+
preview = response.text[:400].replace('\n', ' ')
|
| 60 |
+
print(f"Preview: {preview[:150]}...")
|
| 61 |
+
|
| 62 |
+
if attempt < 5:
|
| 63 |
+
print("β³ Waiting 25 seconds...")
|
| 64 |
+
time.sleep(25)
|
| 65 |
+
|
| 66 |
+
except Exception as e:
|
| 67 |
+
print(f"β Request failed: {e}")
|
| 68 |
+
if attempt < 5:
|
| 69 |
+
time.sleep(25)
|
| 70 |
+
|
| 71 |
+
print(f"\nπ― FINAL STATUS:")
|
| 72 |
+
print(f"Visit: {url}")
|
| 73 |
+
print("\nπ What to look for:")
|
| 74 |
+
print("β’ Landing page with 'Infectious Diseases Agent Builder'")
|
| 75 |
+
print("β’ 'Get Started' button")
|
| 76 |
+
print("β’ No Gradio format errors")
|
| 77 |
+
print("β’ Functional simple chatbot")
|
| 78 |
+
print("\nπ If successful:")
|
| 79 |
+
print("β’ Add API keys (OPENAI_API_KEY, SERPER_API_KEY)")
|
| 80 |
+
print("β’ Test full agent builder functionality")
|
| 81 |
+
print("β’ Verify agent creation and chat features")
|
| 82 |
+
|
| 83 |
+
if __name__ == "__main__":
|
| 84 |
+
monitor_message_format_fix()
|
monitor_original_app.py
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Monitor Original ID Agents App Deployment
|
| 4 |
+
Check if the full agent builder system is working
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
import requests
|
| 8 |
+
import time
|
| 9 |
+
from datetime import datetime
|
| 10 |
+
|
| 11 |
+
def monitor_original_app():
|
| 12 |
+
"""Monitor the original ID Agents app deployment"""
|
| 13 |
+
|
| 14 |
+
print("π MONITORING ORIGINAL ID AGENTS APP")
|
| 15 |
+
print("=" * 60)
|
| 16 |
+
print(f"URL: https://huggingface.co/spaces/John-jero/IDAgentsFreshTest")
|
| 17 |
+
print(f"Time: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}")
|
| 18 |
+
print("Checking if your original agent builder app is working...")
|
| 19 |
+
print("-" * 60)
|
| 20 |
+
|
| 21 |
+
for check in range(3):
|
| 22 |
+
print(f"\nπ Check {check + 1}/3:")
|
| 23 |
+
|
| 24 |
+
try:
|
| 25 |
+
response = requests.get(
|
| 26 |
+
"https://huggingface.co/spaces/John-jero/IDAgentsFreshTest",
|
| 27 |
+
timeout=15
|
| 28 |
+
)
|
| 29 |
+
|
| 30 |
+
print(f"β
Status Code: {response.status_code}")
|
| 31 |
+
print(f"β
Response Size: {len(response.text)} bytes")
|
| 32 |
+
|
| 33 |
+
# Check for specific indicators of your original app
|
| 34 |
+
text = response.text.lower()
|
| 35 |
+
|
| 36 |
+
# Look for signs of the original agent builder
|
| 37 |
+
if "agent builder" in text or "create custom" in text:
|
| 38 |
+
print("π SUCCESS: Original ID Agents app is working!")
|
| 39 |
+
print("β
Agent builder interface detected")
|
| 40 |
+
break
|
| 41 |
+
elif "id agents" in text and ("medical" in text or "ai" in text):
|
| 42 |
+
print("π± PARTIAL: ID Agents interface detected")
|
| 43 |
+
print("π May still be loading agent builder features")
|
| 44 |
+
elif "building" in text or "preparing" in text:
|
| 45 |
+
print("π BUILDING: Space is still building")
|
| 46 |
+
elif "error" in text or "failed" in text:
|
| 47 |
+
print("β ERROR: App showing error page")
|
| 48 |
+
print("π‘ May need to check logs or simplify deployment")
|
| 49 |
+
else:
|
| 50 |
+
print("β UNKNOWN: Checking for specific content...")
|
| 51 |
+
|
| 52 |
+
# Look for more specific signs
|
| 53 |
+
if "gradio" in text:
|
| 54 |
+
print("π± Gradio interface detected")
|
| 55 |
+
if "openai" in text or "api" in text:
|
| 56 |
+
print("π API integration references found")
|
| 57 |
+
if "consultation" in text or "medical" in text:
|
| 58 |
+
print("π©Ί Medical functionality detected")
|
| 59 |
+
|
| 60 |
+
except requests.exceptions.Timeout:
|
| 61 |
+
print("β±οΈ TIMEOUT: Space taking longer than 15 seconds to respond")
|
| 62 |
+
except Exception as e:
|
| 63 |
+
print(f"β ERROR: {e}")
|
| 64 |
+
|
| 65 |
+
if check < 2: # Don't wait after last check
|
| 66 |
+
print("β³ Waiting 60 seconds before next check...")
|
| 67 |
+
time.sleep(60)
|
| 68 |
+
|
| 69 |
+
print(f"\nπ― NEXT STEPS:")
|
| 70 |
+
print("1. Visit the URL manually to see the interface")
|
| 71 |
+
print("2. Check if you see the agent builder tabs/sections")
|
| 72 |
+
print("3. Look for any error messages in the interface")
|
| 73 |
+
print("4. If errors, we may need to simplify the deployment further")
|
| 74 |
+
print("5. Add API keys once the interface is stable")
|
| 75 |
+
|
| 76 |
+
print(f"\nπ TROUBLESHOOTING IF NEEDED:")
|
| 77 |
+
print("β’ If still showing errors β simplify complex imports")
|
| 78 |
+
print("β’ If agent builder missing β check core modules loaded")
|
| 79 |
+
print("β’ If interface broken β revert to simpler UI")
|
| 80 |
+
print("β’ If API errors β add OpenAI key in Space secrets")
|
| 81 |
+
|
| 82 |
+
if __name__ == "__main__":
|
| 83 |
+
monitor_original_app()
|
quick_diagnostic.py
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Quick diagnostic for ID Agents deployment issues
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import requests
|
| 7 |
+
|
| 8 |
+
def quick_diagnostic():
|
| 9 |
+
"""Quick check of the deployment status"""
|
| 10 |
+
|
| 11 |
+
print("π QUICK DEPLOYMENT DIAGNOSTIC")
|
| 12 |
+
print("=" * 50)
|
| 13 |
+
|
| 14 |
+
try:
|
| 15 |
+
response = requests.get(
|
| 16 |
+
"https://huggingface.co/spaces/John-jero/IDAgentsFreshTest",
|
| 17 |
+
timeout=10
|
| 18 |
+
)
|
| 19 |
+
|
| 20 |
+
print(f"Status: {response.status_code}")
|
| 21 |
+
print(f"Size: {len(response.text)} bytes")
|
| 22 |
+
|
| 23 |
+
# Show first 500 characters to see what's actually loading
|
| 24 |
+
print(f"\nFirst 500 characters of response:")
|
| 25 |
+
print("-" * 30)
|
| 26 |
+
print(response.text[:500])
|
| 27 |
+
print("-" * 30)
|
| 28 |
+
|
| 29 |
+
# Check for specific error indicators
|
| 30 |
+
text = response.text.lower()
|
| 31 |
+
|
| 32 |
+
if response.status_code == 401:
|
| 33 |
+
print("\nπ Status 401: Authentication required")
|
| 34 |
+
print("This might indicate:")
|
| 35 |
+
print("β’ App is starting but hitting auth page")
|
| 36 |
+
print("β’ Still building/loading")
|
| 37 |
+
print("β’ Configuration issue")
|
| 38 |
+
|
| 39 |
+
if "error" in text:
|
| 40 |
+
print("β Error keywords found in response")
|
| 41 |
+
if "building" in text or "preparing" in text:
|
| 42 |
+
print("π Build/preparation in progress")
|
| 43 |
+
if "gradio" in text:
|
| 44 |
+
print("π± Gradio framework detected")
|
| 45 |
+
|
| 46 |
+
except Exception as e:
|
| 47 |
+
print(f"β Request failed: {e}")
|
| 48 |
+
|
| 49 |
+
print(f"\nπ‘ RECOMMENDATION:")
|
| 50 |
+
print("Visit the URL manually to see the actual interface:")
|
| 51 |
+
print("https://huggingface.co/spaces/John-jero/IDAgentsFreshTest")
|
| 52 |
+
print("\nLook for:")
|
| 53 |
+
print("β’ Is the agent builder interface visible?")
|
| 54 |
+
print("β’ Any error messages on screen?")
|
| 55 |
+
print("β’ Does it show the landing/builder/chat tabs?")
|
| 56 |
+
|
| 57 |
+
if __name__ == "__main__":
|
| 58 |
+
quick_diagnostic()
|
simple_check.py
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Simple deployment status checker
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
print("π ID AGENTS DEPLOYMENT STATUS")
|
| 7 |
+
print("=" * 50)
|
| 8 |
+
|
| 9 |
+
# Check our deployment files
|
| 10 |
+
import os
|
| 11 |
+
current_dir = os.getcwd()
|
| 12 |
+
print(f"Current directory: {current_dir}")
|
| 13 |
+
|
| 14 |
+
# List key files
|
| 15 |
+
key_files = ["app.py", "requirements.txt", "README.md"]
|
| 16 |
+
for file in key_files:
|
| 17 |
+
if os.path.exists(file):
|
| 18 |
+
size = os.path.getsize(file)
|
| 19 |
+
print(f"β
{file}: {size:,} bytes")
|
| 20 |
+
else:
|
| 21 |
+
print(f"β {file}: Not found")
|
| 22 |
+
|
| 23 |
+
# Check app.py content
|
| 24 |
+
if os.path.exists("app.py"):
|
| 25 |
+
with open("app.py", "r", encoding="utf-8") as f:
|
| 26 |
+
content = f.read()
|
| 27 |
+
lines = len(content.split('\n'))
|
| 28 |
+
print(f" π app.py has {lines:,} lines")
|
| 29 |
+
|
| 30 |
+
# Check for key components
|
| 31 |
+
if "build_agent" in content:
|
| 32 |
+
print(" π€ Agent builder functionality: β
")
|
| 33 |
+
if "show_chat" in content:
|
| 34 |
+
print(" π¬ Chat interface: β
")
|
| 35 |
+
if "KnowledgeLoader" in content:
|
| 36 |
+
print(" π§ Knowledge base: β
")
|
| 37 |
+
|
| 38 |
+
print("\nπ NEXT STEPS:")
|
| 39 |
+
print("1. Visit: https://huggingface.co/spaces/John-jero/IDAgentsFreshTest")
|
| 40 |
+
print("2. Check if you see:")
|
| 41 |
+
print(" β’ Agent Builder interface with tabs")
|
| 42 |
+
print(" β’ Any error messages")
|
| 43 |
+
print(" β’ Loading/building status")
|
| 44 |
+
print("3. If it's still showing auth page, the app might need:")
|
| 45 |
+
print(" β’ OPENAI_API_KEY in HF Spaces settings")
|
| 46 |
+
print(" β’ SERPER_API_KEY in HF Spaces settings")
|
| 47 |
+
|
| 48 |
+
print("\nπ‘ To add API keys to HF Spaces:")
|
| 49 |
+
print("1. Go to your Space settings")
|
| 50 |
+
print("2. Add secrets/environment variables:")
|
| 51 |
+
print(" - OPENAI_API_KEY: your_openai_key")
|
| 52 |
+
print(" - SERPER_API_KEY: your_serper_key")
|
| 53 |
+
print("3. Restart the Space")
|
test_gradio.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""
|
| 3 |
+
Simple test to verify Gradio 4.20.0 compatibility
|
| 4 |
+
"""
|
| 5 |
+
|
| 6 |
+
import gradio as gr
|
| 7 |
+
|
| 8 |
+
def simple_response(message, history):
|
| 9 |
+
return "Hello! This is a test response."
|
| 10 |
+
|
| 11 |
+
# Create a minimal interface
|
| 12 |
+
def test_ui():
|
| 13 |
+
with gr.Blocks() as app:
|
| 14 |
+
gr.Markdown("# Test App for Gradio 4.20.0")
|
| 15 |
+
|
| 16 |
+
# Simple chatbot without type parameter
|
| 17 |
+
chatbot = gr.Chatbot(label="Test Chat")
|
| 18 |
+
|
| 19 |
+
# Input
|
| 20 |
+
msg = gr.Textbox(placeholder="Type a message...")
|
| 21 |
+
|
| 22 |
+
# Button
|
| 23 |
+
send_btn = gr.Button("Send")
|
| 24 |
+
|
| 25 |
+
# Wire up the chat
|
| 26 |
+
send_btn.click(simple_response, [msg, chatbot], [chatbot])
|
| 27 |
+
|
| 28 |
+
return app
|
| 29 |
+
|
| 30 |
+
if __name__ == "__main__":
|
| 31 |
+
test_ui().launch()
|