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
| #!/usr/bin/env bash | |
| ################################################# | |
| # Please do not make any changes to this file, # | |
| # change the variables in webui-user.sh instead # | |
| ################################################# | |
| SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | |
| # If run from macOS, load defaults from webui-macos-env.sh |
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
| from playwright.sync_api import sync_playwright | |
| with sync_playwright() as p: | |
| browser = p.chromium.connect_over_cdp("http://localhost:9222") | |
| default_context = browser.contexts[0] | |
| page = default_context.pages[0] | |
| page.goto("https://x.com/devniel/followers") | |
| page.wait_for_timeout(1000) | |
| items = page.get_by_test_id("cellInnerDiv").all() | |
| print(len(items)) |
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
| { | |
| "last_node_id": 120, | |
| "last_link_id": 228, | |
| "nodes": [ | |
| { | |
| "id": 53, | |
| "type": "Reroute", | |
| "pos": [ | |
| 440, | |
| -20 |
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
| { | |
| "last_node_id": 25, | |
| "last_link_id": 44, | |
| "nodes": [ | |
| { | |
| "id": 14, | |
| "type": "VideoLinearCFGGuidance", | |
| "pos": [ | |
| 487.799932861328, | |
| 265.6999450683599 |
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
| { | |
| "3": { | |
| "inputs": { | |
| "seed": 524650296754258, | |
| "steps": 20, | |
| "cfg": 2.5, | |
| "sampler_name": "euler", | |
| "scheduler": "karras", | |
| "denoise": 1, | |
| "model": [ |
OlderNewer