I hereby claim:
- I am timlrx on github.
- I am timlrx (https://keybase.io/timlrx) on keybase.
- I have a public key ASAwMif-WOQnMu6g1i31JbHBuR4iKCoMJbM3gxushS3HJQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "$defs": { | |
| "InputParameter": { | |
| "description": "Defines a parameter that can be passed to the test container.", | |
| "properties": { | |
| "name": { | |
| "title": "Name", | |
| "type": "string" | |
| }, | |
| "type": { |
| { | |
| "$defs": { | |
| "AssessmentRule": { | |
| "description": "Individual assessment outcome with condition.", | |
| "properties": { | |
| "outcome": { | |
| "description": "Assessment outcome, e.g., 'PASS', 'FAIL', 'A', 'F'", | |
| "title": "Outcome", | |
| "type": "string" | |
| }, |
| { | |
| "$defs": { | |
| "TestDefinition": { | |
| "description": "A single test to be executed.", | |
| "properties": { | |
| "name": { | |
| "description": "A unique, human-readable name for this test instance.", | |
| "title": "Name", | |
| "type": "string" | |
| }, |
| { | |
| "$defs": { | |
| "SUTDefinition": { | |
| "description": "A single System Under Test definition.", | |
| "properties": { | |
| "type": { | |
| "description": "e.g., 'llm_api', 'rest_api'. Used to match with test container capabilities.", | |
| "title": "Type", | |
| "type": "string" | |
| }, |
| import json | |
| import logging | |
| import sys | |
| import torch | |
| from typing import Dict, Any, Optional, List, Set | |
| from nodes import init_extra_nodes, NODE_CLASS_MAPPINGS | |
| from comfy_execution.graph import DynamicPrompt, ExecutionList | |
| from comfy_execution.caching import HierarchicalCache, CacheKeySetInputSignature, CacheKeySetID | |
| from execution import validate_prompt, get_input_data, get_output_data, _map_node_over_list, ExecutionBlocker |
| #!/bin/bash | |
| sudo apt install -y debian-keyring debian-archive-keyring apt-transport-https curl | |
| curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | sudo gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg | |
| curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | sudo tee /etc/apt/sources.list.d/caddy-stable.list | |
| sudo apt update | |
| sudo apt install caddy | |
| # Create a Caddyfile for reverse proxy | |
| sudo tee /etc/caddy/Caddyfile > /dev/null <<EOF |
| import logging | |
| from rich.logging import RichHandler | |
| logging.basicConfig( | |
| level=logging.DEBUG, | |
| format="%(message)s", | |
| datefmt="[%X]", | |
| handlers=[RichHandler(rich_tracebacks=True, omit_repeated_times=False)], | |
| ) |
| // Extract the URLs from the sitemap on the current page | |
| const urls = Array.from(document.getElementsByTagName("url")).map(url => url.getElementsByTagName("loc")[0].textContent.trim()); | |
| // Function to convert an array to a CSV string | |
| function arrayToCSV(arr) { | |
| return arr.map(row => row.join(",")).join("\n"); | |
| } | |
| // Convert the URLs to a CSV string and log it to the console | |
| const csv = arrayToCSV([["URL"], ...urls.map(url => [url])]); |
| #! /bin/bash | |
| sudo apt-get update -y | |
| # Basic packages | |
| sudo apt-get install -y \ | |
| git \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| curl \ | |
| gnupg \ |