-
Notifications
You must be signed in to change notification settings - Fork 15
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
2024.6 release #88
Merged
2024.6 release #88
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
3009a9e
update docs to reference litellm
snopoke 507f5c4
add docs for setting up ollama
snopoke 1d7148b
Merge pull request #86 from czue/sk/ollama
czue 775e1ab
health check token docs
snopoke d06ee7b
Merge pull request #87 from czue/sk/health-check-tokens
czue 51a8013
release notes dump
czue 05474cc
add release note
czue f43d875
Merge branch 'main' into develop
czue 116a12c
qr bugfix
czue a76578e
more release notes
czue f25d893
draft release notes for 2024.6
czue a863d79
update defaults to gpt-4o
czue 539a4ca
add blurb about ollama
czue 97e6b5a
update code formatting docs
czue 8ef7b42
add caveat
czue 0e06191
rewrite config to use ruff
czue 1ddb12f
add turnstile documentation
czue db773b5
final(?) release notes
czue 4fd7a3d
tweaks
czue 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 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 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 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 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 |
---|---|---|
|
@@ -33,9 +33,9 @@ To migrate a project from non-formatted to formatted code, you can go through th | |
1. First, do a full Pegasus upgrade to the version you want to update to, as described [here](./upgrading.md). | ||
**Do *not* check the "autoformat" checkbox yet.** | ||
2. Next, run the formatting tools on your project's `main` branch: | ||
1. Install black and isort: `pip install black isort` | ||
2. Run black: `black --extend-exclude migrations --line-length 120 .` | ||
3. Run isort: `isort -l 120 --profile black .` | ||
1. Install ruff: `pip install ruff` | ||
2. Run ruff linting `ruff check --extend-exclude migrations --line-length 120 . --fix` | ||
3. Run ruff formatting: `ruff format --line-length 120 .` | ||
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. @snopoke does this look right? |
||
3. Commit the result: | ||
1. `git add .` | ||
2. `git commit -m "apply formatting changes"` | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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.
@snopoke was there a reason you didn't switch to
ruff.toml
? just curious.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.
Just to avoid an extra config file