-
Notifications
You must be signed in to change notification settings - Fork 0
Add pytorch LLM #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
ee38d2c
75489cd
ea81584
4f152bd
bc455cc
11eeb12
e3d801a
3c2e35f
54ab0ad
37af43e
02d02f3
8656a7f
b3ffd19
2e7f6a9
f8e248e
a9989eb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,8 +5,11 @@ ordered-set~=4.1.0 | |
| jproperties~=2.1.1 | ||
| pillow~=12.0.0 | ||
| openpyxl-image-loader~=1.0.5 | ||
| huggingface_hub~=1.2.3 | ||
| huggingface_hub~=0.34.0 | ||
| build~=1.3.0 | ||
| lmstudio~=1.5.0 | ||
| openai~=2.14.0 | ||
| requests~=2.32.5 | ||
| requests~=2.32.5 | ||
| torch~=2.9.1 | ||
| transformers~=4.57.3 | ||
|
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Check latest available versions of torch and transformers on PyPI
echo "Checking torch versions:"
curl -s https://pypi.org/pypi/torch/json | jq -r '.releases | keys | .[-15:]' | sort -V
echo -e "\nChecking transformers versions:"
curl -s https://pypi.org/pypi/transformers/json | jq -r '.releases | keys | .[-15:]' | sort -VRepository: kmgowda/sbk-charts Length of output: 469 Fix invalid transformers version in requirements.txt. Line 14 specifies The 🤖 Prompt for AI Agents |
||
| accelerate>=0.20.0 # Required for model parallelism and memory optimization | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Python 3.14 does not exist yet.
Python 3.14 is not released (current stable versions are 3.12/3.13). This will cause conda environment creation to fail. Consider using Python 3.12 or 3.13.
Proposed fix
📝 Committable suggestion
🤖 Prompt for AI Agents