Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

symmetry-client

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

symmetry-client

Symmetry client

latest
npmnpm
Version
1.0.2
Version published
Maintainers
0
Created
Source

Symmetry Client

Use this repository to become an inference provider on the Symmetry network programmatically.

Symmetry is a decentralized peer-to-peer network tool that allows users to share computational resources for AI inference. It enables users to connect directly and securely with each other, offering or seeking computational power for various AI tasks.

Installation

npm install symmetry-client

Usage

To create a new Symmetry provider:

import { SymmetryProvider } from 'symmetry-client';

const config = {
  // ... your configuration object
};

const provider = new SymmetryProvider(config);
provider.init();

Configuration

Here's an example configuration object for creating a SymmetryProvider:

const config = {
  apiHostname: "localhost",
  apiKey: "",
  apiPath: "/v1/chat/completions",
  apiPort: 11434,
  apiProtocol: "http",
  apiProvider: "ollama",
  dataCollectionEnabled: false,
  maxConnections: 10,
  modelName: "llama3.1:latest",
  name: "twinnydotdev",
  path: "/home/twinnydotdev/.config/symmetry/data",
  public: true,
  serverKey: "4b4a9cc325d134dee6679e9407420023531fd7e96c563f6c5d00fd5549b77435",
  systemMessage: "I'm a system message"
};

const provider = new SymmetryProvider(config);

Configuration Fields

  • apiHostname: The hostname of the API server.
  • apiKey: The API key for authentication (if required).
  • apiPath: The endpoint path for chat completions.
  • apiPort: The port number on which the API server is listening.
  • apiProtocol: The protocol used to communicate with the API server.
  • apiProvider: The name of the API provider.
  • dataCollectionEnabled: Whether to enable data collection.
  • maxConnections: The maximum number of connections.
  • modelName: The name and version of the AI model to use.
  • name: Your chosen name as a provider on the Symmetry network.
  • path: The local path where Symmetry will store its configuration and data files.
  • public: Whether this provider is publicly accessible on the Symmetry network.
  • serverKey: The unique key for connecting to the Symmetry server.
  • systemMessage: An optional system message for each conversation.

Adjust these settings according to your preferences and setup.

Contributing

Contributions are welcome! Please submit your pull requests to the GitHub repository.

License

This project is licensed under the MIT License.

Support

If you encounter any issues or have questions, please open an issue on GitHub.

Acknowledgments

We thank Hyperswarm for providing the underlying peer-to-peer networking capabilities.

Keywords

symmetry

FAQs

Package last updated on 20 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts