From 2c4e2a92b1647131b05edc6833372f14f74d8345 Mon Sep 17 00:00:00 2001 From: rjmacarthy Date: Fri, 29 Nov 2024 17:02:45 +0000 Subject: [PATCH] update readme and scripts --- install.ps1 | 2 +- install.sh | 2 +- readme.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/install.ps1 b/install.ps1 index 7c01c42..0497c78 100644 --- a/install.ps1 +++ b/install.ps1 @@ -36,7 +36,7 @@ if (!(Test-Path $provider_yaml)) { # Symmetry Configuration apiHostname: localhost apiKey: -apiPath: /v1/chat/completions +apiChatPath: /v1/chat/completions apiPort: 11434 apiProtocol: http apiProvider: ollama diff --git a/install.sh b/install.sh index af690a2..440413a 100755 --- a/install.sh +++ b/install.sh @@ -38,7 +38,7 @@ if [ ! -f "$provider_yaml" ]; then # Symmetry Configuration apiHostname: localhost apiKey: -apiPath: /v1/chat/completions +apiChatPath: /v1/chat/completions apiPort: 11434 apiProtocol: http apiProvider: ollama diff --git a/readme.md b/readme.md index 8af9efa..2448e0a 100644 --- a/readme.md +++ b/readme.md @@ -63,7 +63,7 @@ Here's an example `provider.yaml` configuration: ```yaml apiHostname: localhost # The hostname of the API server. apiKey: # The API key for authentication. -apiPath: /v1/chat/completions # The endpoint path for chat completions. +apiChatPath: /v1/chat/completions # The endpoint path for chat completions. apiPort: 11434 # The port number on which the API server is listening. apiProtocol: http # The protocol used to communicate with the API server. apiProvider: ollama # The name of the API provider. @@ -71,7 +71,7 @@ dataCollectionEnabled: false # Whether to enable data collection. maxConnections: 10 # The maximum number of connections. modelName: llama3.1:latest # The name and version of the AI model to use. name: twinnydotdev # Your chosen name as a provider on the Symmetry network. -path: /home/twinnydotdev/.config/symmetry/data # The local path where Symmetry will store its configuration and data files. +dataPath: /home/twinnydotdev/.config/symmetry/data # The local path where Symmetry will store its configuration and data files. public: true # Whether this provider is publicly accessible on the Symmetry network. serverKey: 4b4a9cc325d134dee6679e9407420023531fd7e96c563f6c5d00fd5549b77435 # The unique key for connecting to the Symmetry server. systemMessage: "I'm a system message" # An optional system message for each conversation.