auto_space_1 / space_config.py
broadfield-dev's picture
Upload space_config.py with huggingface_hub
0cf7e43 verified
raw
history blame contribute delete
393 Bytes
import json
SPACE_CONFIG = {
'name': 'chatbot',
'description': 'A simple chatbot using Hugging Face Inference Client',
'org': 'your-org',
'type': 'gradio',
'env': {
'INFINITE-loop': 'true'
},
'dependencies': {
'python': '3.9',
'huggingface_hub': 'latest',
'transformers': 'latest',
'gradio': 'latest'
}
}