Skip to content

Commit

Permalink
update readme and scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmacarthy committed Nov 29, 2024
1 parent d9e5579 commit 2c4e2a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ 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.
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.
Expand Down

0 comments on commit 2c4e2a9

Please sign in to comment.