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
| Using CPython 3.12.12 | |
| Removed virtual environment at: .venv | |
| Creating virtual environment at: .venv | |
| Installed 158 packages in 119ms | |
| ===================================================== test session starts ===================================================== | |
| platform linux -- Python 3.12.12, pytest-9.0.1, pluggy-1.6.0 | |
| rootdir: /home/knyaz/workspace/lalamo | |
| configfile: pyproject.toml | |
| plugins: anyio-4.11.0, hypothesis-6.150.0, jaxtyping-0.3.3, xdist-3.8.0, env-1.2.0 | |
| collected 163 items |
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
| function gcm | |
| # Check if llm is installed, if not, install it | |
| if not type -q llm | |
| echo "'llm' is not installed. Attempting to install it using pip..." | |
| if pip install llm | |
| echo "'llm' installed successfully." | |
| else | |
| echo "Failed to install 'llm'. Please install it manually and try again." | |
| return 1 | |
| end |