Spaces:
Runtime error
Runtime error
Rename to huggingface_model_uri
Browse files- agents/model.py +1 -1
agents/model.py
CHANGED
@@ -2,7 +2,7 @@ import os
|
|
2 |
|
3 |
# Assumption that this secret exists in the current Space's environment
|
4 |
# You may choose between different models based on availability or requirements
|
5 |
-
def
|
6 |
my_id = os.getenv("MODEL_URI")
|
7 |
print(my_id)
|
8 |
# Your Hugging Face model loading logic here
|
|
|
2 |
|
3 |
# Assumption that this secret exists in the current Space's environment
|
4 |
# You may choose between different models based on availability or requirements
|
5 |
+
def huggingface_model_uri():
|
6 |
my_id = os.getenv("MODEL_URI")
|
7 |
print(my_id)
|
8 |
# Your Hugging Face model loading logic here
|