Haven't tried that! Do github pages allow the streamlit run command to deploy the app?
@avikumart_
-
Streamlit vs GitHub Pages: Building Personal Sites
By
–
Streamlit personal site or github pages? build on streamlit but it has it's own disadvantages. share your thoughts on improvement
-
Appreciation for open sourced technical material
By
–
Really compect material. Thanks for open sourceing it
-
PyPilot Dependent Tasks: Modular LLM-Backed Workflows
By
–
With Dependent Tasks, you can compose modular, LLM-backed workflows effortlessly—no fragile scripting. Check out PyPilot’s docs and build workflows that think step-by-step! #AI #Python #PyPilot #Coding
-
Task Orchestration Pipelines for Real-World AI Applications
By
–
This ensures Task B only runs after Task A completes—creating clean, interpretable, and robust pipelines. Perfect for real-world use-cases: Keyword-based summarization Sentiment-guided user feedback Topic-powered content generation Context-aware chatbots
-
Task B: Summarize Text Using Keywords and Agents
By
–
Define Task B: Summarize based on Task A
summary = http://
pypilot.run( f"Summarize the text using only these keywords: {keywords}", agents=[agent_b], result_type=str, context={'text': long_text}
) -
Automated Keyword Extraction Using AI Agents
By
–
Define Task A: Extract keywords
keywords = http://
pypilot.run( "Extract key topics from this text", agents=[agent_a], result_type=list, context={'text': long_text}
) -
Setting Up Multi-Agent AI Systems for Task Automation
By
–
Setup agents for each task:
agent_a = pypilot.Agent(model="gpt-4o-mini", instructions="Extract keywords")
agent_b = pypilot.Agent(model="gpt-4o-mini", instructions="Generate summary using keywords") -
Pypilot’s Task Capabilities and Problem-Solving with LLMs
By
–
Learn more about pypilot's tasks capabilities and problems it can solve using llms.
-
Firecrawl: Powerful Web Scraping Tool for Data Extraction
By
–
Firecrawl is insane tool for web scraping. Works wonderfully