|
| 1 | +# ollamar 1.2.0 |
| 2 | + |
| 3 | +- All functions calling API endpoints have `endpoint` parameter. |
| 4 | +- All functions calling API endpoints have `...` parameter to pass additional model options to the API. |
| 5 | +- All functions calling API endpoints have `host` parameter to specify the host URL. Default is `NULL`, which uses the default Ollama URL. |
| 6 | +- Add `req` as an output format for `generate()` and `chat()`. |
| 7 | +- Add new functions for calling APIs: `create()`, `show()`, `copy()`, `delete()`, `push()`, `embed()` (supercedes `embeddings()`), `ps()`. |
| 8 | +- Add helper functions to manipulate chat/conversation history for `chat()` function (or other APIs like OpenAI): `create_message()`, `append_message()`, `prepend_message()`, `delete_message()`, `insert_message()`. |
| 9 | +- Add `ohelp()` function to chat with models in real-time. |
| 10 | +- Add helper functions: `model_avail()`, `image_encode_base64()`, `check_option_valid()`, `check_options()`, `search_options()`, `validate_options()` |
| 11 | + |
1 | 12 | # ollamar 1.1.1
|
2 | 13 |
|
3 | 14 | ## Bug fixes
|
|
11 | 22 |
|
12 | 23 | ## New features
|
13 | 24 |
|
14 |
| -- Integrated R with Ollama to run language models locally on your own machine. |
15 |
| -- Included `test_connection()` function to test connection to Ollama server. |
16 |
| -- Included `list_models()` function to list available models. |
17 |
| -- Included `pull()` function to pull a model from Ollama server. |
18 |
| -- Included `delete()` function to delete a model from Ollama server. |
19 |
| -- Included `chat()` function to chat with a model. |
20 |
| -- Included `generate()` function to generate text from a model. |
21 |
| -- Included `embeddings()` function to get embeddings from a model. |
22 |
| -- Included `resp_process()` function to process `httr2_response` objects. |
| 25 | +- Integrate R with Ollama to run language models locally on your own machine. |
| 26 | +- Include `test_connection()` function to test connection to Ollama server. |
| 27 | +- Include `list_models()` function to list available models. |
| 28 | +- Include `pull()` function to pull a model from Ollama server. |
| 29 | +- Include `delete()` function to delete a model from Ollama server. |
| 30 | +- Include `chat()` function to chat with a model. |
| 31 | +- Include `generate()` function to generate text from a model. |
| 32 | +- Include `embeddings()` function to get embeddings from a model. |
| 33 | +- Include `resp_process()` function to process `httr2_response` objects. |
23 | 34 |
|
0 commit comments