Skip to content

Commit

Permalink
fix issue in confluence loader constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
adhityan committed Feb 2, 2024
1 parent 1a09703 commit 490b71c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@llm-tools/embedjs",
"version": "0.0.50",
"version": "0.0.51",
"description": "A NodeJS RAG framework to easily work with LLMs and custom datasets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/loaders/confluence-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class ConfluenceLoader extends BaseLoader<{ type: 'ConfluenceLoader' }> {
this.confluenceBaseUrl = confluenceBaseUrl ?? process.env.CONFLUENCE_BASE_URL;

this.confluence = new ConfluenceClient({
host: confluenceBaseUrl,
host: this.confluenceBaseUrl,
authentication: {
basic: {
username: confluenceUsername ?? process.env.CONFLUENCE_USER_NAME,
Expand Down

0 comments on commit 490b71c

Please sign in to comment.