Spaces:
Sleeping
Sleeping
File size: 267 Bytes
99c4fdf |
1 2 3 4 5 6 7 |
def load_system_prompt():
try:
with open("prompt.md", "r") as file:
return file.read()
except Exception as e:
print(f"Error loading system prompt: {str(e)}")
return "You are GAIA, a helpful AI assistant." # Fallback prompt |