-
Notifications
You must be signed in to change notification settings - Fork 35
ComfyStream Release 0.0.5 #192
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
a4c564d
removing max frameRate fixes error on Safari (#8)
llandau 2a89781
Combobox support for control panel (#18)
JJassonn69 119537f
fix: temporarily disable sam-2 node (#46)
eliteprox ac02e2e
fix comfystream preview js error (#47)
eliteprox 1bfcfd8
workflow: Add workflow for testing/linting (#36)
hjpotter92 f3f5d1a
workflows: Build more of comfyui-base docker image (#66)
hjpotter92 670a997
add librosa, remove requirements.txt (#37)
eliteprox 6755be2
changes the branch to master for ComfyUI-StreamPack (#67)
eliteprox 79f6775
Revert "fix: temporarily disable sam-2 node (#46)" (#68)
eliteprox 0c564ba
update ver to 0.0.5 (#69)
eliteprox 1f837fa
feat(server): make ComfyUI log level configurable (#16)
rickstaa 91d897c
chore(deps): bump next from 15.1.6 to 15.2.4 in /ui (#58)
dependabot[bot] d92a6f5
changes supporting ai-runner upgrade to comfystream 0.0.4 (#56)
eliteprox e53eed2
fix conda env activation (#78)
eliteprox a9080db
disable automatic env activation (#81)
eliteprox d7c096f
feat(models): add Depth Anything V2 Large model (#79)
rickstaa 9ff4b39
Support for super-resolution node with opencv-cuda (#65)
JJassonn69 1375def
update script with with min/max width/height (#107)
pschroedl 15ddda2
Feat/dynamic resolution (#38)
ryanontheinside dd0c709
don't use GPU for comfyui-base workflow (#110)
pwilczynskiclearcode 4ac3649
update icon for comfyui registry (#115)
eliteprox e70b88c
update to ver 0.0.6 (#113)
eliteprox 9ab0b0d
Revert "don't use GPU for comfyui-base workflow (#110)" (#117)
eliteprox File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| paths-ignore: | ||
| - "docker/" |
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| name: Test project | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: | ||
| - "main" | ||
| push: | ||
| branches: | ||
| - "main" | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| codeql: | ||
| name: Perform CodeQL analysis | ||
| if: ${{ github.repository == 'livepeer/comfystream' }} | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| ref: ${{ github.event.pull_request.head.sha }} | ||
|
|
||
| # Initializes the CodeQL tools for scanning. | ||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v3 | ||
| with: | ||
| languages: typescript,javascript,python | ||
| config-file: ./.github/codeql-config.yaml | ||
|
|
||
| - name: Perform CodeQL Analysis | ||
| uses: github/codeql-action/analyze@v3 | ||
|
|
||
|
|
||
| editorconfig: | ||
| name: Run editorconfig checker | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| # Check https://github.com/livepeer/go-livepeer/pull/1891 | ||
| # for ref value discussion | ||
| ref: ${{ github.event.pull_request.head.sha }} | ||
|
|
||
| - name: Install editorconfig-checker | ||
| uses: editorconfig-checker/action-editorconfig-checker@main | ||
|
|
||
| - name: Run editorconfig checker against the repo | ||
| if: false | ||
| # disabled editorconfig lint rule for now | ||
| run: editorconfig-checker --format github-actions | ||
|
|
||
| test: | ||
| name: Run Tests | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| # Check https://github.com/livepeer/go-livepeer/pull/1891 | ||
| # for ref value discussion | ||
| ref: ${{ github.event.pull_request.head.sha }} | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.11' | ||
| cache: pip | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install '.[dev]' | ||
|
|
||
| - name: Run tests | ||
| run: pytest --cov --verbose --showlocals | ||
|
|
||
| - name: Upload coverage to Codecov | ||
| uses: codecov/codecov-action@v5 | ||
| with: | ||
| token: ${{ secrets.CI_CODECOV_TOKEN }} | ||
| name: ${{ github.event.repository.name }} |
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,3 +5,4 @@ aiohttp | |
| toml | ||
| twilio | ||
| prometheus_client | ||
| librosa | ||
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Add explicit handling for tuple inputs with unexpected lengths to prevent silent failures or misconfiguration in input processing.
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.
Let's track and address later since this is a standard release pr #193