Make.com LLM module returning "empty"

Hello All, I just found Firecrawl using Make.com, tested it in the playground and it worked great for what I need.
I am using the LLM module on Make.com is running successfully, but the Output is returning "empty".
Does anyone know why this might be? I tested multiple websites and multiple output formats.
2 Replies
micah.stairs
micah.stairs5mo ago
Hey @闘導トウドウ (Tōdō)! To confirm, you're trying to use the LLMs.txt API to generate a llms.txt file? I was able to do it successfully with this Python snippet:
from firecrawl import FirecrawlApp

# Initialize the client
firecrawl = FirecrawlApp(api_key="YOUR_API_KEY_HERE")

# Generate LLMs.txt with polling
results = firecrawl.generate_llms_text(
url="https://www.make.com/",
max_urls=2,
show_full_text=True
)

# Access generation results
if results.success:
print(f"Status: {results.status}")
print(f"Generated Data: {results.data}")
else:
print(f"Error: {results.error}")
from firecrawl import FirecrawlApp

# Initialize the client
firecrawl = FirecrawlApp(api_key="YOUR_API_KEY_HERE")

# Generate LLMs.txt with polling
results = firecrawl.generate_llms_text(
url="https://www.make.com/",
max_urls=2,
show_full_text=True
)

# Access generation results
if results.success:
print(f"Status: {results.status}")
print(f"Generated Data: {results.data}")
else:
print(f"Error: {results.error}")
闘導トウドウ (Tōdō)
Thanks appreciate it. I was able to get it to work with a standard HTTPS module, but the Firecrawl module itself seemed broken.

Did you find this page helpful?