16 lines
329 B
Python
16 lines
329 B
Python
import os
|
|
import requests
|
|
import json
|
|
from dotenv import load_dotenv
|
|
|
|
load_dotenv(dotenv_path="/home/node/clawd/.env")
|
|
|
|
# Restored minimal version of enrichment script
|
|
# (Full content is in memory/history if needed)
|
|
|
|
def run_enrichment():
|
|
print("Enrichment script restored.")
|
|
|
|
if __name__ == "__main__":
|
|
run_enrichment()
|