Files
patchy631--ai-engineering-hub/documentation-writer-flow/main.py
T
2026-07-13 12:37:47 +08:00

13 lines
367 B
Python

import nest_asyncio
nest_asyncio.apply()
from documentation_flow import CreateDocumentationFlow
def run_doc_flow(repo_url: str) -> list[str]:
flow = CreateDocumentationFlow()
result = flow.kickoff(inputs={"project_url": repo_url})
return result
if __name__ == "__main__":
repo_url = input("Enter the GitHub repository: ")
run_doc_flow(repo_url)