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
| MIIQSQIBAzCCD/4GCSqGSIb3DQEHAaCCD+8Egg/rMIIP5zCCBbsGCSqGSIb3DQEHBqCCBawwggWo | |
| AgEAMIIFoQYJKoZIhvcNAQcBMGAGCSqGSIb3DQEFDTBTMDIGCSqGSIb3DQEFDDAlBBDnC0RSKveW | |
| CZ6dgTO7jpMxAgMBAAAwDAYIKoZIhvcNAgkFADAdBglghkgBZQMEASoEEN3zeqnAzCEwp7Mtk8Su | |
| EGuAggUw09p3v+Xnua3uTHFTJ0OO3qu/LHYgnkII5os0jZcFrPunDapbGas7w+EwgLxhNhqlrxZw | |
| JjXyItHzfYqjB3v//TgH0JQAsCxAYIRoNBLAOu1iDUDTkZHDsY25MBb9MSBXVUHfs2TyJjtB/LIb | |
| Sy/7XtQrUf1J6+XsVh33zesAEcaEaGsy2EBl85fe91Emoromqq8MsTCGbmRj1y0zTcP2ATKx7UAd | |
| ykiGYY/+uAZ6MRbzLE+CHvbRfMC6Rbpa7JDr6Gn35C/FBFkmUJ0ezhJwFsSzKUzhh1P1ihHHqAEO | |
| 8pmR9LUOEiHto9pT3yNAyG4GBc8YDiUIFFrG6HFU0ZTjzV2pWfTgix7/PuWKUlko0imOSozMr8a0 | |
| VQVnvY6Qeu0ID2KBK9yPe1G0061pplziRCpWTABKQ0JmtoSv1jq9F5P89OUsisKBBp7e7KTPMElT | |
| ltOExz6kFIZIjSSBvSHlktVjU6vDUk9hFD0GPGb0n9ZF7v5csk96S/CcmIXuHR2EAOyK8q1tjxig |
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
| MIIuxAIBAzCCLm4GCSqGSIb3DQEHAaCCLl8Egi5bMIIuVzCCHk4GCSqGSIb3DQEHAaCCHj8Egh47 | |
| MIIeNzCCCg0GCyqGSIb3DQEMCgECoIIJwDCCCbwwZgYJKoZIhvcNAQUNMFkwOAYJKoZIhvcNAQUM | |
| MCsEFN26CQ+eb57qDk6G95mva/T4h773AgInEAIBIDAMBggqhkiG9w0CCQUAMB0GCWCGSAFlAwQB | |
| KgQQhnoFxHBfyeXHq6Tan5kZqASCCVCuKD/7eoL91Jh9MFburx5Nrz07nzSbrkj63Fx09ZCoJFFj | |
| wr5PfnoNBlD5cyqgEx4mxjz3U0YwtFjdtNUSWDC3PU92Degy3cA2ChZa2S+BxLoMtf/cqZeFvXCs | |
| pKsIZbXrUrboaT+0iY0WRoHjlfDkiIa2/ZDMJZNl9A7Sjg5gzhJ7NwFZK1AKDZ02MqaWGKNGg54Z | |
| MyTkH1xpieXdJIH6Y/40+kDzL18v8gr1b+c5IskT0WiG19RiRyhx9QEag4tQySzMkcJCDaUGR+xk | |
| CB1bmL/MZ6XjMaVE5flhMWmSYc68/qfhxZofHdmgj5h2aqsop2J37yObYAJsepUhC3BVCN61nEL1 | |
| zubvGbO9smnTQpKJDj3NpK3B1Tq0pEUGYc+2BD/vlHa1EDD4ONBCYc3J0j/BiNX4Atrms/bgSzFM | |
| atVlWO4tEAEylauFV8pj6W7xT7JaSWO0plfeRlI2+/NuH60F1J0emlbj4L4cwqPdzq0t5tfThR0H |
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/local/bin/bash | |
| CURRENT_DIR="$(pwd)" | |
| if [[ $? != 0 ]]; then | |
| echo 'Get current dir error!'; exit 1; fi | |
| CONFIG_FILE="${CURRENT_DIR}/reps.yml" | |
| if [[ -L "${CONFIG_FILE}" ]]; then |
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/local/bin/bash | |
| if [[ $# -ne 3 ]]; then | |
| echo 'Wrong arguments!' >&2; exit 1; fi | |
| CURRENT_DIR="$1" | |
| if [[ -z "${CURRENT_DIR}" ]]; then | |
| echo 'No path!' >&2; exit 1 | |
| elif [[ -L "${CURRENT_DIR}" ]]; then |
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/local/bin/bash | |
| CURRENT_DIR="$(pwd)" | |
| if [[ $? != 0 ]]; then | |
| echo 'Get current dir error!'; exit 1; fi | |
| CONFIG_FILE="${CURRENT_DIR}/reps.yml" | |
| if [[ -L "${CONFIG_FILE}" ]]; then |
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/local/bin/bash | |
| if test $# -ne 1; then | |
| echo 'Wrong arguments!'; exit 1; fi | |
| VCS_PAT="$1" | |
| ARGUMENTS=(VCS_PAT) | |
| for (( INDEX=0; INDEX<${#ARGUMENTS[@]}; INDEX++ )); do | |
| ARGUMENT="${ARGUMENTS[INDEX]}" |
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/local/bin/bash | |
| HF_TOKEN='foobarbaz' | |
| MODEL='CohereLabs/aya-vision-32b:cohere' | |
| ROLE='user' | |
| CONTENT_TEXT='Describe this image. Keep it to 512 characters. Include the captions in the image, but do not repeat them verbatim if you exceed the character limit.' | |
| FILE_PATH='.excluded/jpg/img01.jpg' | |
| MIME_TYPE='image/jpeg' |
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/local/bin/bash | |
| HF_TOKEN='foobarbaz' | |
| MODEL='CohereLabs/aya-vision-32b:cohere' | |
| ROLE='user' | |
| CONTENT_TEXT='Describe this image. Keep it to 512 characters.' | |
| IMAGE_URL='https://static.boredpanda.com/blog/wp-content/uploads/2025/10/18-68efabda89790__700.jpg' # wake up | |
| MAX_TOKENS=128 |
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/local/bin/bash | |
| MODEL='openai/gpt-oss-20b:fireworks-ai' | |
| HF_TOKEN='foobarbaz' | |
| ROLE='user' | |
| CONTENT='Hello, write one short sentence.' | |
| MAX_TOKENS=32 | |
| JSON_BODY='{}' |
NewerOlder