YoanSallami
commited on
Commit
·
7869aeb
1
Parent(s):
feb47ff
Update
Browse files- code_examples/1_basics/1_first_steps.py +5 -4
- development.md +1 -0
- requirements.txt +1 -0
code_examples/1_basics/1_first_steps.py
CHANGED
@@ -34,8 +34,8 @@ def _(mo):
|
|
34 |
If you want to install it from source (for contributors), then do:
|
35 |
|
36 |
```shell
|
37 |
-
git clone https://github.com/SynaLinks/
|
38 |
-
cd
|
39 |
./shell/uv.sh # Install uv
|
40 |
./shell/install.sh # Create the virtual env and install Synalinks
|
41 |
```
|
@@ -75,8 +75,9 @@ def _(mo):
|
|
75 |
mo.md(
|
76 |
r"""
|
77 |
Addtionally, you can install Ollama [here](https://ollama.com/) to run
|
78 |
-
Language Models (LMs) locally.
|
79 |
-
|
|
|
80 |
|
81 |
## Prompting
|
82 |
|
|
|
34 |
If you want to install it from source (for contributors), then do:
|
35 |
|
36 |
```shell
|
37 |
+
git clone https://github.com/SynaLinks/synalinks
|
38 |
+
cd synalinks
|
39 |
./shell/uv.sh # Install uv
|
40 |
./shell/install.sh # Create the virtual env and install Synalinks
|
41 |
```
|
|
|
75 |
mo.md(
|
76 |
r"""
|
77 |
Addtionally, you can install Ollama [here](https://ollama.com/) to run
|
78 |
+
Language Models (LMs) locally. In these notebooks, we are going to use OpenAI,
|
79 |
+
because they are going to run on the cloud. But you can copy them locally and
|
80 |
+
use Ollama instead without issue.
|
81 |
|
82 |
## Prompting
|
83 |
|
development.md
CHANGED
@@ -6,3 +6,4 @@
|
|
6 |
MARIMO_PASSWORD=password docker build -t marimo-editor . --secret id=MARIMO_PASSWORD,env=MARIMO_PASSWORD
|
7 |
docker run -it --rm -p 7860:7860 marimo-editor
|
8 |
```
|
|
|
|
6 |
MARIMO_PASSWORD=password docker build -t marimo-editor . --secret id=MARIMO_PASSWORD,env=MARIMO_PASSWORD
|
7 |
docker run -it --rm -p 7860:7860 marimo-editor
|
8 |
```
|
9 |
+
|
requirements.txt
CHANGED
@@ -2,3 +2,4 @@ huggingface-hub==0.26.2
|
|
2 |
marimo[sql]
|
3 |
datasets
|
4 |
synalinks
|
|
|
|
2 |
marimo[sql]
|
3 |
datasets
|
4 |
synalinks
|
5 |
+
arxiv
|