Update README.md

This commit is contained in:
James 2024-11-27 12:00:34 +10:00 committed by GitHub
parent 95a41467c7
commit 57d4bd1f38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -83,7 +83,7 @@ The key distinction is that this isn't just a chatbot—it's an automated resear
5. Go to the llm_config.py file which should hav an ollama section that looks like this: 5. Go to the llm_config.py file which should hav an ollama section that looks like this:
```sh ```sh
LLM_CONFIG_OLLAMA = { LLM_CONFIG_OLLAMA = {
"llm_type": "ollama", "llm_type": "ollama",
"base_url": "http://localhost:11434", # default Ollama server URL "base_url": "http://localhost:11434", # default Ollama server URL
@ -93,7 +93,7 @@ LLM_CONFIG_OLLAMA = {
"n_ctx": 55000, "n_ctx": 55000,
"context_length": 55000, "context_length": 55000,
"stop": ["User:", "\n\n"] "stop": ["User:", "\n\n"]
``` ```
And then change where it says replace with your Ollama model name, to the name of the model you have setup in Ollama to use with the program. And then change where it says replace with your Ollama model name, to the name of the model you have setup in Ollama to use with the program.