Skip to content

Commit

Permalink
Resolve comments + update licence
Browse files Browse the repository at this point in the history
  • Loading branch information
linhtran174 committed Dec 4, 2023
1 parent f5c19bc commit f6f5db0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions core/src/fs.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
const fetchRetry = require("fetch-retry")(global.fetch);

/**
* Writes data to a file at the specified path.
* @param {string} path - The path to the file.
Expand Down
1 change: 1 addition & 0 deletions server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
data
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.1.3",
"main": "./build/main.js",
"author": "Jan <[email protected]>",
"license": "MIT",
"license": "AGPL-3.0",
"homepage": "https://github.com/janhq/jan/tree/main/electron",
"description": "Use offline LLMs with your own data. Run open source models like Llama2 or Falcon on your internal computers/servers.",
"build": {
Expand Down
2 changes: 1 addition & 1 deletion server/v1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const router: FastifyPluginAsync = async (app: FastifyInstance, opts) => {
app.register(
assistantsAPI,
{
prefix: "/assisstants"
prefix: "/assistants"
}
)

Expand Down

0 comments on commit f6f5db0

Please sign in to comment.