You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
swarms/examples/utils/fetch_prompt.py

14 lines
292 B

from dotenv import load_dotenv
from swarms.utils.fetch_prompts_marketplace import (
fetch_prompts_from_marketplace,
)
load_dotenv()
if __name__ == "__main__":
prompt = fetch_prompts_from_marketplace(
prompt_id="0ff9cc2f-390a-4eb1-9d3d-3a045cd2682e"
)
print(prompt)