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
| minRiskScore: 11 | |
| riskScoreClasses { | |
| risk_classes { | |
| label: "LOW" | |
| max: 15 | |
| url: "https://www.coronawarn.app" | |
| } | |
| risk_classes { | |
| label: "HIGH" | |
| min: 15 |
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/zsh | |
| # Create a temporary directory | |
| temp_dir=$(mktemp -d) | |
| trap 'rm -rf "$temp_dir"' EXIT | |
| # Function to process file path | |
| process_file_path() { | |
| local file_path="$1" | |
| local temp_file="$temp_dir/$(basename "$file_path")" |
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
| <!DOCTYPE html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <style> | |
| /* Improve overall text readability */ | |
| body { | |
| font-family: "Merriweather", Georgia, serif; | |
| font-size: 16px; |
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 openai import OpenAI | |
| from dotenv import load_dotenv | |
| load_dotenv() | |
| client = OpenAI() | |
| screenshot_base64 = "iVBOR..." | |
| response = client.responses.create( | |
| model="computer-use-preview", |