Skip to content

Commit

Permalink
add Anthropic Claude Sonnet-3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Joseph Petro committed Jun 25, 2024
1 parent 55e00e7 commit 301c907
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build/compile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const swagger_jsdoc = require('swagger-jsdoc');
files.forEach(file => {
if(!['.ejs', '.md'].includes(path.extname(file))) return;
const file_path = path.join(templates_dir, file);
const content = fs.readFileSync(file_path, 'utf8');
const content = fs.readFileSync(file_path, 'utf8').replace(/\r\n/g, '\n');
views[path.basename(file, path.extname(file))] = content;
});
// console.log('views', views);
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

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

0 comments on commit 301c907

Please sign in to comment.