This file contains 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 | |
# | |
# Drush launcher no longer works in Druapl 10 because of | |
# the TTY check in the new Symfony's Process implementation. | |
# | |
# This script search for a "vendor/bin/drush" in the current | |
# folder herichey and proxy parameters to that drush. Feels | |
# like old launcher behaviour. | |
# |
This file contains 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
# API Key | |
MISTRAL_API_KEY="some-api-key" | |
# Model used | |
#MISTRAL_MODEL="mistral-large-latest" | |
MISTRAL_MODEL="mistral-tiny" |
OlderNewer