SDK
Developers can integrate AI inference services offered by providers on the 0G Compute Network into their own applications using the 0G SDK. To begin, only Large Language Models (LLMs) inference services are available. Fine-turing and other features will be added in the future.
The SDK ensures a straightforward process to connect with and utilize these services efficiently.
- TypeScript SDK
- Other SDKs
Step 1: Install the dependency
To get started, you need to install the @0glabs/0g-serving-broker
package:
pnpm add @0glabs/0g-serving-broker @types/crypto-js@4.2.2 crypto-js@4.2.0
Step 2: Initialize a Broker Instance
The broker instance is initialized with a signer
. This signer is an instance that implements the JsonRpcSigner
or Wallet
interface from the ethers package and is used to sign transactions for a specific Ethereum account. You can create this instance using your private key via the ethers library or use a wallet framework tool like wagmi to initialize the signer.
import { createZGServingNetworkBroker } from "@0glabs/0g-serving-broker";
/**
* 'createZGServingNetworkBroker' is used to initialize ZGServingUserBroker
*
* @param {JsonRpcSigner | Wallet} signer - A signer that implements the 'JsonRpcSigner' or
* 'Wallet' interface from the ethers package.
*
* @param {string} contractAddress - 0G Serving contract address, use default address if not provided.
*
* @returns broker instance.
*
* @throws An error if the broker cannot be initialized.
*/
const broker = await createZGServingNetworkBroker(signer);
Step 3: List Available Services
/**
* 'listService' retrieves a list of services from the contract.
*
* @returns {Promise<ServiceStructOutput[]>} A promise that resolves to an array of ServiceStructOutput
* objects.
*
* type ServiceStructOutput = {
* provider: string; // Provider's wallet address, which is the unique identifier for the provider.
* name: string;
* serviceType: string;
* url: string;
* inputPrice: bigint;
* outputPrice: bigint;
* updatedAt: bigint;
* model: string;
* };
*
* @throws An error if the service list cannot be retrieved.
*/
const services = await broker.listService();
Step 4: Manage Accounts
Before using the provider's services, you need to create an account specifically for the chosen provider. The provider checks the account balance before responding to requests. If the balance is insufficient, the request will be denied.
4.1 Create an Account
/**
* 'addAccount' creates a new account in the contract.
*
* @param {string} providerAddress - The wallet address of the provider for whom the account is being created.
* You can obtain the `providerAddress` from the service list.
*
* @param {number} balance - The initial balance to be assigned to the new account. The unit is A0GI.
*
* @throws An error if the account creation fails.
*/
await broker.addAccount(providerAddress, balance);
4.2 Deposit Funds into the Account
/**
* 'depositFund' deposits a specified amount of funds into an existing account.
*
* @param {string} providerAddress - The wallet address of the provider, which serves as the identifier
* for the account associated with the provider.
*
* @param {number} amount - The amount of funds to be deposited. The unit is A0GI.
*
* @throws An error if the deposit fails.
*/
await broker.depositFund(providerAddress, amount);
Step 5: Use the Provider's Services
5.1 Get Service metadata
/**
* 'getServiceMetadata' returns metadata for the provider service. Includes:
*
* 1. Service endpoint of the provider service
*
* 2. Model information for the provider service
*
* @param {string} providerAddress - The wallet address of the provider, which, along with the `serviceName`,
* serves as the identifier for the service in the 0G Compute Network.
*
* @param {string} serviceName - The name of the service.
*
* @returns { endpoint, model } - Object containing endpoint and model.
*
* @throws An error if errors occur during the processing of the request.
*/
const { endpoint, model } = await broker.getServiceMetadata(
providerAddress,
serviceName
);
5.2 Get Request Headers
/**
* 'getRequestHeaders' generates billing-related headers for the request
* when the user uses the provider service.
*
* In the 0G Serving system, a request with valid billing headers
* is considered a settlement proof and will be used by the provider
* for settlement in contract.
*
* @param {string} providerAddress - The wallet address of the provider, which, along with the `serviceName`,
* serves as the identifier for the service in the 0G Compute Network.
*
* @param {string} serviceName - The name of the service.
*
* @param {string} content - The content being billed. For example, in a chatbot service, it is the text input
* by the user.
*
* @returns headers. Records information such as the request fee and user signature.
*
* @throws An error if errors occur during the processing of the request.
*/
const headers = await broker.getRequestHeaders(
providerAddress,
serviceName,
content
);
5.3 Send Request
Once you have the endpoint
, model
, and headers
, you can send an HTTP request to the provider service, as demonstrated in the example below.
/**
* 1. The `endpoint` and `model` are obtained from `getServiceMetadata`.
* You only need to call `getServiceMetadata` once for each service.
*
* 2. The `headers` are obtained from `getRequestHeaders`.
* You need to generate `headers` for each request, as they depend on the request content.
*
* 3. The `content` is the input data for the request and should match the input used in `getRequestHeaders`.
*
* 4. The organization of the message content may vary depending on the provider service.
* Currently, the 0G Compute Network supports OpenAI's format.
*/
await fetch(`${endpoint}/chat/completions`, {
method: "POST",
headers: {
"Content-Type": "application/json",
...headers,
},
body: JSON.stringify({
messages: [{ role: "system", content }],
model: model,
}),
});
/**
* Already using the OpenAI SDK in your application? Seamlessly decentralize your application by switching
* to the 0G Compute Network. Here's how to modify your OpenAI API call to use a 0G Compute Network service:
*
* 1. Replace the OpenAI API endpoint and model with those obtained from `getServiceMetadata`.
*
* 2. Leave the API key field empty.
*
* 3. Add the billing headers generated by `getRequestHeaders`.
*/
const openai = new OpenAI({
baseURL: endpoint,
apiKey: " ",
});
const completion = await openai.chat.completions.create(
{
messages: [{ role: "system", content }],
model: model,
},
{
headers: {
...headers,
},
}
);
Note: After receiving the response, you must use processResponse
as demonstrated in step 5.4 to settle the response fee. Failure to do so will result in subsequent requests being denied due to unpaid fees. If this happens, you can manually settle the fee using settleFee
as shown in step 5.5. The amount owed will be specified in the error message.
Note: Generated headers
are valid for a single use only and cannot be reused.
5.4 Process Responses
/**
* 'processResponse' is used after the user successfully obtains a response from the provider service.
*
* It will settle the fee for the response content. Additionally, if the service is verifiable,
* input the chat ID from the response and 'processResponse' will determine the validity of the
* returned content by checking the provider service's response and corresponding signature associated
* with the chat ID.
*
* @param {string} providerAddress - The address of the provider.
*
* @param {string} serviceName - The name of the service.
*
* @param {string} content - The main content returned by the service. For example, in the case of a
* chatbot service, it would be the response text.
*
* @param {string} chatID - Only for verifiable services. You can provide the chat ID obtained from the
* response to automatically download the response signature. The function will verify the reliability
* of the response using the service's signing address.
*
* @returns A boolean value. True indicates the returned content is valid, otherwise it is invalid.
*
* @throws An error if any issues occur during the processing of the response.
*/
const valid = await broker.processResponse(
providerAddress,
serviceName,
content,
chatID
);
5.5 Settle Fees Manually
/**
* 'settleFee' is used to settle the fee for the provider service.
*
* Normally, the fee for each request will be automatically settled in 'processResponse'.
* However, if 'processResponse' fails due to network issues or other reasons,
* you can manually call settleFee to settle the fee.
*
* @param {string} providerAddress - The address of the provider.
*
* @param {string} serviceName - The name of the service.
*
* @param {number} fee - The fee to be settled. The unit is A0GI.
*
* @returns A promise that resolves when the fee settlement is successful.
*
* @throws An error if any issues occur during the fee settlement process.
*/
await broker.settleFee(providerAddress, serviceName, fee);
By following these steps, you can effectively integrate provider services into your applications. For more information, please download the example.
Coming soon