Spaces:
Running
Running
Fix syntax errors in support_docs.py
Browse files- Resolve invalid syntax caused by incomplete markdown blocks
- Consolidate split markdown sections into single blocks
- Remove all image placeholders as requested
- Maintain condensed documentation language
- support_docs.py +0 -8
support_docs.py
CHANGED
@@ -24,9 +24,7 @@ def create_support_docs():
|
|
24 |
3. **Preview** and test configuration
|
25 |
4. **Generate** deployment package
|
26 |
5. **Deploy** to HuggingFace
|
27 |
-
"""
|
28 |
|
29 |
-
gr.Markdown("""
|
30 |
**Prerequisites:**
|
31 |
- HuggingFace account (free)
|
32 |
- OpenRouter API key
|
@@ -91,9 +89,7 @@ def create_support_docs():
|
|
91 |
- URL testing (up to 4 URLs)
|
92 |
- Chat export
|
93 |
- Clear function
|
94 |
-
"""
|
95 |
|
96 |
-
gr.Markdown("""
|
97 |
**Preview Steps:**
|
98 |
1. Complete Configuration tab setup
|
99 |
2. Click "Preview Deployment Package"
|
@@ -159,9 +155,7 @@ def create_support_docs():
|
|
159 |
**Advanced Settings:**
|
160 |
- Temperature (0.0-2.0)
|
161 |
- Max Tokens (50-4096)
|
162 |
-
"""
|
163 |
|
164 |
-
gr.Markdown("""
|
165 |
**URL Grounding (Static)**
|
166 |
- 2-4 URLs for consistent context
|
167 |
- Content cached during generation
|
@@ -188,9 +182,7 @@ def create_support_docs():
|
|
188 |
- **200-750**: Medium (recommended: 750)
|
189 |
- **750-1500**: Detailed explanations
|
190 |
- **1500+**: Extended analysis
|
191 |
-
"""
|
192 |
|
193 |
-
gr.Markdown("""
|
194 |
**Token Notes:**
|
195 |
- Includes input (prompt + context) and output
|
196 |
- URLs increase input tokens
|
|
|
24 |
3. **Preview** and test configuration
|
25 |
4. **Generate** deployment package
|
26 |
5. **Deploy** to HuggingFace
|
|
|
27 |
|
|
|
28 |
**Prerequisites:**
|
29 |
- HuggingFace account (free)
|
30 |
- OpenRouter API key
|
|
|
89 |
- URL testing (up to 4 URLs)
|
90 |
- Chat export
|
91 |
- Clear function
|
|
|
92 |
|
|
|
93 |
**Preview Steps:**
|
94 |
1. Complete Configuration tab setup
|
95 |
2. Click "Preview Deployment Package"
|
|
|
155 |
**Advanced Settings:**
|
156 |
- Temperature (0.0-2.0)
|
157 |
- Max Tokens (50-4096)
|
|
|
158 |
|
|
|
159 |
**URL Grounding (Static)**
|
160 |
- 2-4 URLs for consistent context
|
161 |
- Content cached during generation
|
|
|
182 |
- **200-750**: Medium (recommended: 750)
|
183 |
- **750-1500**: Detailed explanations
|
184 |
- **1500+**: Extended analysis
|
|
|
185 |
|
|
|
186 |
**Token Notes:**
|
187 |
- Includes input (prompt + context) and output
|
188 |
- URLs increase input tokens
|