Skip to content

Commit

Permalink
Merge branch 'main' into drop-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop authored Aug 11, 2024
2 parents a8b9691 + 560473d commit 7b2961f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/pr-convention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ jobs:
name: Check PR Title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
- name: All PRs
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Bounty PRs
if: contains(github.event.pull_request.labels.*.name, '🙋 Bounty claim')
uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
requireScope: true
scopes: \d+
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/cli/llm/wizard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ impl<Q, A> Wizard<Q, A> {
pub fn new(model: String) -> Self {
Self {
client: Client::builder()
.with_chat_options(ChatOptions::default().with_json_mode(true))
.with_chat_options(
ChatOptions::default()
.with_json_mode(true)
.with_temperature(0.0),
)
.build(),
model,
_q: Default::default(),
Expand Down

0 comments on commit 7b2961f

Please sign in to comment.