milwright commited on
Commit
72ef28d
·
verified ·
1 Parent(s): 4dbfc5c

Delete CLAUDE.md

Browse files
Files changed (1) hide show
  1. CLAUDE.md +0 -41
CLAUDE.md DELETED
@@ -1,41 +0,0 @@
1
- # ChatUI Helper
2
-
3
- A Gradio-based chat interface helper tool.
4
-
5
- ## Current Status
6
-
7
- ### Master Branch
8
- - Up to date with latest fixes for HuggingFace Spaces deployment
9
- - Gradio updated to version 5.37.0 for compatibility
10
- - Launch configuration set with share=True for HuggingFace Spaces
11
-
12
- ### HuggingFace Deployment
13
-
14
- **Space URL:** https://huggingface.co/spaces/milwright/chatui-helper
15
-
16
- **Recent Issues Fixed:**
17
- 1. **Launch Configuration:** App was failing because it needed `share=True` when localhost isn't accessible in HuggingFace Spaces
18
- 2. **Outdated Gradio Version:** Space was using Gradio 4.44.1, updated to 5.37.0 as required by HuggingFace
19
-
20
- **Applied Fixes:**
21
- - Set `share=True` in `demo.launch()`
22
- - Updated `requirements.txt` from `gradio>=4.44.1` to `gradio==5.37.0`
23
- - Updated `sdk_version` in README.md to match
24
-
25
- **Deployment Status:**
26
- - Changes pushed to HuggingFace remote
27
- - Space should rebuild automatically
28
- - Monitor: https://huggingface.co/spaces/milwright/chatui-helper/settings
29
-
30
- ## Development Notes
31
-
32
- ### HuggingFace Spaces Compatibility
33
- - Use `share=True` for launch configuration
34
- - Pin Gradio version to match HuggingFace requirements
35
- - Keep runtime complexity minimal for Spaces ecosystem
36
- - Follow HuggingFace Spaces documentation for best practices
37
-
38
- ### Git Workflow
39
- - Main branch: master
40
- - Recent commits focus on HF compatibility fixes
41
- - No additional runtime complexity should be added without HF Spaces consideration