You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updated README.md with links to "official" chatified neuromatch courses
note: the computational climate tools course is not yet live; i've used a dummy link for now, but will update once the chatified climate course is ready
Copy file name to clipboardExpand all lines: README.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Chatify is a python package that enables ipython magic commands to Jupyter noteb
7
7
8
8
# Background
9
9
10
-
This tool was originally created to supplement the [Neuromatch Academy](https://compneuro.neuromatch.io/tutorials/intro.html) materials. A "Chatify-enhanced" version of the Neuromatch computational neuroscience course may be found [here](https://contextlab.github.io/course-content/tutorials/intro.html), and an enhanced version of the deep learning course may be found [here](https://contextlab.github.io/course-content-dl/tutorials/intro.html).
10
+
This tool was originally created to supplement the [Neuromatch Academy](https://neuromatch.io/courses/) materials. A "Chatify-enhanced" version of the Neuromatch computational neuroscience course may be found [here](http://chatify.compneuro.neuromatch.io/), an enhanced version of the deep learning course may be found [here](http://chatify.deeplearning.neuromatch.io/), an enhanced version of the NeuroAI course may be found [here](http://chatify.neuroai.neuromatch.io/), and an enhanced version of the computational tools for climate science course may be found [here](add.link).
11
11
12
12
## Installing and enabling Chatify
13
13
@@ -75,22 +75,22 @@ Once you have your API key(s), if needed, create a `config.yaml` file in the dir
75
75
76
76
### OpenAI configuration
77
77
78
-
If you have an OpenAI API key, adding this config.yaml file to your local directory (after adding your API key) will substantially improve your experience by generating higher quality responses:
78
+
If you have an OpenAI API key, adding this config.yaml file to your local directory (after adding your API key) enable you to generate responses using any [OpenAI model](https://platform.openai.com/docs/models):
79
79
80
80
```yaml
81
81
cache_config:
82
82
cache: False
83
83
caching_strategy: exact # alternative: similarity
84
84
cache_db_version: 0.1
85
-
url: <URL># ignore this
85
+
url: None# ignore this
86
86
87
87
feedback: False
88
88
89
89
model_config:
90
-
open_ai_key: <OPENAI API KEY>
90
+
open_ai_key: <OPENAI API KEY># paste in your OpenAI API key here
91
91
model: open_ai_model
92
-
model_name: gpt-4
93
-
max_tokens: 2500
92
+
model_name: gpt-4o # replace with a model of your choosing
93
+
max_tokens: 100000
94
94
95
95
chain_config:
96
96
chain_type: default
@@ -108,15 +108,15 @@ cache_config:
108
108
cache: False
109
109
caching_strategy: exact # alternative: similarity
110
110
cache_db_version: 0.1
111
-
url: <URL> # ignore this
111
+
url: None # ignore this
112
112
113
113
feedback: False
114
114
115
115
model_config:
116
116
model: llama_model
117
117
model_name: TheBloke/Llama-2-70B-Chat-GGML # can also replace "70B" with either "7B" or "13B" on this line and the next
118
118
weights_fname: llama-2-70b-chat.ggmlv3.q5_1.bin
119
-
max_tokens: 2500
119
+
max_tokens: 32000
120
120
n_gpu_layers: 40
121
121
n_batch: 512
122
122
@@ -136,14 +136,14 @@ cache_config:
136
136
cache: False
137
137
caching_strategy: exact # alternative: similarity
138
138
cache_db_version: 0.1
139
-
url: <URL> # ignore this
139
+
url: None # ignore this
140
140
141
141
feedback: False
142
142
143
143
model_config:
144
144
model: huggingface_model
145
145
model_name: TheBloke/Llama-2-70B-Chat-GGML # replace with any text-generation model on Hugging Face!
0 commit comments