From eac7402ef4d3a23b816844ced70182fae1f127eb Mon Sep 17 00:00:00 2001 From: Leo <48623649+Leo310@users.noreply.github.com> Date: Thu, 29 Feb 2024 21:49:50 +0100 Subject: [PATCH 1/2] chore: update README.md --- README.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f7d179e..0f2ec30 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ # Smart Second Brain -TBD +> [!Note] +> Still in Open Beta. MVP will be released in mid-March. ## Features TBD @@ -25,7 +26,7 @@ The Smart Second Brain provides two modes. When the Incognito mode is enabled it 2. Go to your Terminal and execute the following Command: ```zsh -$ launchctl setenv OLLAMA_ORIGINS "*" +launchctl setenv OLLAMA_ORIGINS "*" ``` 3. Quit the Ollama service (in your Menu Bar click on the Ollama Icon and click Quit) @@ -36,13 +37,13 @@ $ launchctl setenv OLLAMA_ORIGINS "*" - with [Homebrew](https://brew.sh/): ```zsh - $ brew install Ollama + brew install Ollama ``` - with curl: ```zsh - $ curl -fsSL https://ollama.ai/install.sh | sh + curl -fsSL https://ollama.ai/install.sh | sh ``` - or [manually](https://github.com/ollama/ollama/blob/main/docs/linux.md) with binaries. @@ -50,7 +51,7 @@ $ launchctl setenv OLLAMA_ORIGINS "*" 2. Start the Ollama service with the Origins flag: ```zsh -$ OLLAMA_ORIGINS="*" ollama serve +OLLAMA_ORIGINS="*" ollama serve ``` ### Linux @@ -59,7 +60,7 @@ $ OLLAMA_ORIGINS="*" ollama serve - with curl: ```zsh - $ curl -fsSL https://ollama.ai/install.sh | sh + curl -fsSL https://ollama.ai/install.sh | sh ``` - or [manually](https://github.com/ollama/ollama/blob/main/docs/linux.md) with binaries. @@ -70,8 +71,12 @@ $ OLLAMA_ORIGINS="*" ollama serve ### Windows -> [!Note] -> Coming soon! For now, you can install Ollama on Windows via WSL2. +1. Install [Ollama](https://ollama.com/download) +2. Quit running Ollama instance +3. Start PowerShell and run the following command to set the origins +```powershell +$env:OLLAMA_ORIGINS="*"; ollama serve +``` ## OpenAI From d0658957c30381d38ef36a1e6f7705a67a1a5e7a Mon Sep 17 00:00:00 2001 From: nicobrauchtgit Date: Fri, 1 Mar 2024 09:43:05 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0f2ec30..5a38ed1 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ # Smart Second Brain > [!Note] -> Still in Open Beta. MVP will be released in mid-March. +> Still in Open Beta. MVP will be released mid-March. ## Features TBD