Spaces:
Running
Running
wording
Browse files
app.py
CHANGED
@@ -174,10 +174,10 @@ with gr.Blocks(
|
|
174 |
Model choice can be a interesting topic involing quite a few experiments. Feel free to try any other models you like!
|
175 |
|
176 |
## Troubleshooting
|
177 |
-
- If your API is on localhost / local network, you may need to
|
178 |
- If your API is on some AI service platform, review if you have enough balance / credits / quota on the platform.
|
179 |
- If you are sure that you have set up the API correctly, but encounter an error along the way, try click the "Go!" button again.
|
180 |
-
- Try change AI provider / model
|
181 |
- Report to GitHub issue if you believe it's a bug.
|
182 |
""")
|
183 |
with gr.Row():
|
|
|
174 |
Model choice can be a interesting topic involing quite a few experiments. Feel free to try any other models you like!
|
175 |
|
176 |
## Troubleshooting
|
177 |
+
- If your API is on localhost / local network, you may need to host this app on local network too.
|
178 |
- If your API is on some AI service platform, review if you have enough balance / credits / quota on the platform.
|
179 |
- If you are sure that you have set up the API correctly, but encounter an error along the way, try click the "Go!" button again.
|
180 |
+
- Try change AI provider / model.
|
181 |
- Report to GitHub issue if you believe it's a bug.
|
182 |
""")
|
183 |
with gr.Row():
|
config.py
CHANGED
@@ -15,7 +15,7 @@ IS_SHARE = bool(os.getenv("IS_SHARE")) or False
|
|
15 |
IS_DEBUG = bool(os.getenv("IS_DEBUG")) or False
|
16 |
|
17 |
DEMO_TITLE = "CoverPilot: AI-Powered Cover Letter Generator"
|
18 |
-
DEMO_DESCRIPTION = "
|
19 |
|
20 |
CV_EXT = [".typ", ".tex", ".html", ".docx", ".rst", ".rtf", ".odt", ".txt", ".md"]
|
21 |
EXT_TXT = [".txt", ".md"]
|
|
|
15 |
IS_DEBUG = bool(os.getenv("IS_DEBUG")) or False
|
16 |
|
17 |
DEMO_TITLE = "CoverPilot: AI-Powered Cover Letter Generator"
|
18 |
+
DEMO_DESCRIPTION = "CoverPilot is an AI-powered cover letter generator that helps you write a cover letter in seconds."
|
19 |
|
20 |
CV_EXT = [".typ", ".tex", ".html", ".docx", ".rst", ".rtf", ".odt", ".txt", ".md"]
|
21 |
EXT_TXT = [".txt", ".md"]
|