Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ markdown_with_custom_html(markdown_text, custom_html)
|
|
34 |
# Set your Hugging Face API key here
|
35 |
# hf_token = "YOUR_HUGGING_FACE_API_KEY" # Replace with your actual token
|
36 |
# Get Hugging Face token from secrets.toml - this line should already be in the main code
|
37 |
-
|
38 |
|
39 |
HUGGING_FACE_REPO_URL = "https://huggingface.co/spaces/acecalisto3/DevToolKit"
|
40 |
PROJECT_ROOT = "projects"
|
@@ -362,7 +362,7 @@ st.sidebar.title("Navigation")
|
|
362 |
app_mode = st.sidebar.selectbox("Choose the app mode", ["AI Agent Creator", "Tool Box", "Workspace Chat App"])
|
363 |
|
364 |
# Get Hugging Face token from secrets.toml
|
365 |
-
hf_token = st.secrets["huggingface"]
|
366 |
|
367 |
if app_mode == "AI Agent Creator":
|
368 |
# AI Agent Creator
|
@@ -593,7 +593,7 @@ def add_file_to_dictionary(files, file_path):
|
|
593 |
if agent._hf_api and agent.has_valid_hf_token():
|
594 |
agent.deploy_built_space_to_hf()
|
595 |
# Use the hf_token to interact with the Hugging Face API
|
596 |
-
api = HfApi(token=hf_token)
|
597 |
# Function to create a Space on Hugging Face
|
598 |
def create_space(api, name, description, public, files, entrypoint="launch.py"):
|
599 |
url = f"{hf_hub_url()}spaces/{name}/prepare-repo"
|
|
|
34 |
# Set your Hugging Face API key here
|
35 |
# hf_token = "YOUR_HUGGING_FACE_API_KEY" # Replace with your actual token
|
36 |
# Get Hugging Face token from secrets.toml - this line should already be in the main code
|
37 |
+
HF_TOKEN = os.environ.get("huggingface")
|
38 |
|
39 |
HUGGING_FACE_REPO_URL = "https://huggingface.co/spaces/acecalisto3/DevToolKit"
|
40 |
PROJECT_ROOT = "projects"
|
|
|
362 |
app_mode = st.sidebar.selectbox("Choose the app mode", ["AI Agent Creator", "Tool Box", "Workspace Chat App"])
|
363 |
|
364 |
# Get Hugging Face token from secrets.toml
|
365 |
+
hf_token = st.secrets["huggingface"]
|
366 |
|
367 |
if app_mode == "AI Agent Creator":
|
368 |
# AI Agent Creator
|
|
|
593 |
if agent._hf_api and agent.has_valid_hf_token():
|
594 |
agent.deploy_built_space_to_hf()
|
595 |
# Use the hf_token to interact with the Hugging Face API
|
596 |
+
api = HfApi(token="hf_token")
|
597 |
# Function to create a Space on Hugging Face
|
598 |
def create_space(api, name, description, public, files, entrypoint="launch.py"):
|
599 |
url = f"{hf_hub_url()}spaces/{name}/prepare-repo"
|