This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================== | |
| # === Start of Gemini Diff-Based Docs Generator === | |
| # ============================================== | |
| # ---- Documentation Generation Prompt ---- | |
| __gemini_docs_prompt=$( | |
| cat <<'EOF' | |
| You are generating technical documentation from code changes. | |
| Produce clear, maintainable, developer-friendly documentation. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| title: Web Search using SearXNG and Scrape first N Pages | |
| Usage: | |
| from web_search import Tools | |
| import asyncio | |
| async def main(): | |
| tools = Tools() | |
| # Search and scrape top results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================== | |
| # === Start of Qwen Diff-Based Code Review === | |
| # ============================================== | |
| # Detailed review prompt (multi-line, neatly formatted) | |
| __qwen_prompt_text=$( | |
| cat <<'EOF' | |
| Thoroughly review the changes, identifying potential issues including edge cases, syntax errors, | |
| logical flaws, unintended side effects, performance bottlenecks, and coding standards violations. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================== | |
| # === Start of Gemini Diff-Based Code Review === | |
| # ============================================== | |
| # Detailed review prompt (multi-line, neatly formatted) | |
| __gemini_prompt_text=$( | |
| cat <<'EOF' | |
| Thoroughly review the changes, identifying potential issues including edge cases, syntax errors, | |
| logical flaws, unintended side effects, performance bottlenecks, and coding standards violations. | |
| Pay special attention to complex logic, input validation, and modifications affecting stability/scalability. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| # Constants | |
| CONTAINER_NAME="openwebui" | |
| DEFAULT_PORT=1337 | |
| DEFAULT_MODEL="llama3.1:8b" | |
| IMAGE_NAME="ghcr.io/open-webui/open-webui:main" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>XAMPP Home</title> | |
| </head> | |
| <style type="text/css"> | |
| body { | |
| background: #fcfcfc; | |
| color: #111; |