| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
pip install uvuv syncor alternatively:
uv add -r requirements.txtYou will need to use the environment variables defined in .env.example to run Video Composer Agent. It's recommended you use Vercel Environment Variables for this, but a .env file is all that is necessary.
Note: You should not commit your .env file or it will expose secrets that will allow others to control access to your various OpenAI and authentication provider accounts.
To run the main script:
uv run main.pyFeel free to modify the main.py script to add new tools and modify the agent's behavior.
agent_launch.mp4The documentation search system provides semantic search capabilities for Diffusion Studio's documentation:
from src.tools.docs_search import DocsSearchTool
# Initialize search tool
docs_search = DocsSearchTool()
# Basic search
results = docs_search.forward(query="how to add text overlay")
# With reranking for more accurate results
results = docs_search.forward(query="how to add text overlay", rerank_results=True)
# Limit number of results
results = docs_search.forward(query="how to add text overlay", limit=10)
# With filters
results = docs_search.forward(
query="video transitions",
filter_conditions={"section": "video-effects"}
)The search tool:
See CONTRIBUTING.md for development setup and guidelines.
MCP is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools.
| Back | FazBrowse Home | New Git URL |