Skip to content

Commit

Permalink
chore: v0.3.1 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
av committed Mar 9, 2025
1 parent 393fb6e commit c6c5174
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 13 deletions.
26 changes: 26 additions & 0 deletions .scripts/deno.lock

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

10 changes: 5 additions & 5 deletions .scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ echo "Moving docs..."
harbor dev docs

# echo "NPM Publish..."
npm publish --access public
# npm publish --access public

# echo "PyPi Publish..."
poetry env use system
poetry build -v
poetry publish -v
# # echo "PyPi Publish..."
# poetry env use system
# poetry build -v
# poetry publish -v
2 changes: 1 addition & 1 deletion .scripts/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as toml from 'jsr:@std/toml';
import * as path from 'jsr:@std/path';
import * as collections from "jsr:@std/collections/deep-merge";

const VERSION = "0.3.0";
const VERSION = "0.3.1";

type ValueSeed = {
// Path relative to the project root
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@avcodes/harbor-app",
"private": true,
"version": "0.3.0",
"version": "0.3.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion app/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "harbor-app"
version = "0.3.0"
version = "0.3.1"
description = "A companion app for Harbor LLM toolkit"
authors = ["av"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion app/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2.0.0-rc",
"productName": "Harbor",
"version": "0.3.0",
"version": "0.3.1",
"identifier": "com.harbor.app",
"build": {
"beforeDevCommand": "bun run dev",
Expand Down
23 changes: 23 additions & 0 deletions boost/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -645,6 +645,11 @@ HARBOR_BOOST_API_KEYS ""
# or inverse - emit them even if this setting is off
HARBOR_BOOST_INTERMEDIATE_OUTPUT true

# Allows choosing how the status messages will be formatted
# when emitted by the boost modules
# See boost.status.style section for more info
HARBOR_BOOST_STATUS_STYLE md:codeblock

# Module specific configs:
# Klmbr
HARBOR_BOOST_KLMBR_PERCENTAGE 35
Expand All @@ -661,6 +666,24 @@ HARBOR_BOOST_G1_STRAT match
HARBOR_BOOST_G1_STRAT_PARAMS role=user,index=-1
HARBOR_BOOST_G1_MAX_STEPS 15

# MCTS
HARBOR_BOOST_MCTS_STRAT match
HARBOR_BOOST_MCTS_STRAT_PARAMS role=user,index=-1
HARBOR_BOOST_MCTS_MAX_SIMULATIONS 2
HARBOR_BOOST_MCTS_MAX_ITERATIONS 2
HARBOR_BOOST_MCTS_THOUGHTS 2
BOOST_MCTS_EXPLORATION_CONSTANT 1.414

# eli5
HARBOR_BOOST_ELI5_STRAT match
HARBOR_BOOST_ELI5_STRAT_PARAMS role=user,index=-1

# Supersummer
HARBOR_BOOST_SUPERSUMMER_STRAT match
HARBOR_BOOST_SUPERSUMMER_STRAT_PARAMS role=user,index=-1
HARBOR_BOOST_SUPERSUMMER_NUM_QUESTIONS 5
HARBOR_BOOST_SUPERSUMMER_LENGTH one short paragraph

# R0
HARBOR_BOOST_R0_THOUGHTS 5
```
Expand Down
2 changes: 1 addition & 1 deletion harbor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4099,7 +4099,7 @@ run_gptme_command() {
# ========================================================================

# Globals
version="0.3.0"
version="0.3.1"
harbor_repo_url="https://github.com/av/harbor.git"
harbor_release_url="https://api.github.com/repos/av/harbor/releases/latest"
delimiter="|"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@avcodes/harbor",
"version": "0.3.0",
"version": "0.3.1",
"description": "Effortlessly run LLM backends, APIs, frontends, and services with one command.",
"private": false,
"author": "av <av@av.codes> (https://av.codes)",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml

Large diffs are not rendered by default.

0 comments on commit c6c5174

Please sign in to comment.