8 lines
195 B
Bash
Executable File
8 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get the directory of this script
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Run the Python script using poetry
|
|
poetry run python "$DIR/code_to_prompt/main.py" "$@"
|