Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update local_llm_settings.md #765

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/local_llm_settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ Let's try changing the temperature to `1.0`. In our `completions_api_settings.js

```json
{
"temp": 1.0
"temperature": 1.0
}
```

Note how we're using the naming conventions from llama.cpp. In this case, using `"temperature"` instead of `"temp"` will also work.
Note how we're using the naming conventions from llama.cpp. In this case, using `"temperature"` instead of `"temp"`.

Now if we save the file and start a new agent chat with `memgpt run`, we'll notice that the LM Studio server logs now say `"temp": 1.0`:

Expand Down Expand Up @@ -96,7 +96,7 @@ If your parameters are getting picked up correctly, they will be output to the t
Found completion settings file '/Users/user/.memgpt/settings/completions_api_settings.json', loading it...
Updating base settings with the following user settings:
{
"temp": 1.0
"temperature": 1.0
}
...(truncated)...
```
Expand Down Expand Up @@ -143,7 +143,7 @@ Now copy the following to your `completions_api_settings.json` file:
{
"top_k": 1,
"top_p": 0,
"temp": 0,
"temperature": 0,
"repeat_penalty": 1.18,
"seed": -1,
"tfs_z": 1,
Expand Down
Loading