Skip to content

Commit

Permalink
👌 IMPROVE: Code
Browse files Browse the repository at this point in the history
  • Loading branch information
msaaddev committed Nov 15, 2024
1 parent 732f108 commit ac10bf5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/release-snapshot.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ bumpVersion('./packages/langbase/package.json');
run(`pnpm changeset version --snapshot ${SHORT_SHA}`);

// Build and publish the snapshot release
run('pnpm build');
run('pnpm build:pkgs');
run('pnpm changeset publish --no-git-tag --tag snapshot');

// Reset Git changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"prepare": "husky",
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"build:pkgs": "turbo run build --filter=./packages/*",
"changeset": "changeset",
"publint": "turbo publint",
"type-check": "turbo type-check",
Expand Down
3 changes: 3 additions & 0 deletions packages/langbase/src/pipes/pipes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ export class Pipe {
apiKey: options.apiKey, // Langbase API key
name: options.name?.trim() || '', // Pipe name
prod: true,
// default values
model: 'openai:gpt-4o-mini',
tools: [],
} as any);
}

Expand Down

0 comments on commit ac10bf5

Please sign in to comment.