|
| 1 | +import { Tool } from "@goat-sdk/core"; |
| 2 | +import { WalletClientBase } from "@goat-sdk/core"; |
| 3 | +import { Client } from "opengradient-sdk"; |
| 4 | +import { LLMChatParameters, LLMCompletionParameters, ModelInferenceParameters } from "./parameters"; |
| 5 | +import { OpenGradientConfig } from "./types"; |
| 6 | + |
| 7 | +export class OpengradientService { |
| 8 | + private client: Client | null = null; |
| 9 | + |
| 10 | + constructor(private config: OpenGradientConfig) {} |
| 11 | + |
| 12 | + private getClient(clientConfig: OpenGradientConfig): Client { |
| 13 | + if (!this.client) { |
| 14 | + this.client = new Client({ |
| 15 | + privateKey: clientConfig.privateKey, |
| 16 | + }); |
| 17 | + } |
| 18 | + return this.client; |
| 19 | + } |
| 20 | + |
| 21 | + @Tool({ |
| 22 | + name: "opengradient_model_inference", |
| 23 | + description: "Run inference on a machine learning model using OpenGradient", |
| 24 | + }) |
| 25 | + async runModelInference(walletClient: WalletClientBase, parameters: ModelInferenceParameters) { |
| 26 | + const client = this.getClient(this.config); |
| 27 | + const [txHash, modelOutput] = await client.infer( |
| 28 | + parameters.modelCid, |
| 29 | + parameters.inferenceMode, |
| 30 | + parameters.modelInput, |
| 31 | + ); |
| 32 | + |
| 33 | + return { |
| 34 | + transactionHash: txHash, |
| 35 | + output: modelOutput, |
| 36 | + }; |
| 37 | + } |
| 38 | + |
| 39 | + @Tool({ |
| 40 | + name: "opengradient_llm_completion", |
| 41 | + description: "Generate text completions using an LLM through OpenGradient", |
| 42 | + }) |
| 43 | + async runLLMCompletion(walletClient: WalletClientBase, parameters: LLMCompletionParameters) { |
| 44 | + const client = this.getClient(this.config); |
| 45 | + const [txHash, completion] = await client.llmCompletion( |
| 46 | + parameters.modelCid, |
| 47 | + parameters.inferenceMode, |
| 48 | + parameters.prompt, |
| 49 | + parameters.maxTokens, |
| 50 | + parameters.stopSequence, |
| 51 | + parameters.temperature, |
| 52 | + ); |
| 53 | + |
| 54 | + return { |
| 55 | + transactionHash: txHash, |
| 56 | + completion, |
| 57 | + }; |
| 58 | + } |
| 59 | + |
| 60 | + @Tool({ |
| 61 | + name: "opengradient_llm_chat", |
| 62 | + description: "Interact with an LLM using a chat interface through OpenGradient", |
| 63 | + }) |
| 64 | + async runLLMChat(walletClient: WalletClientBase, parameters: LLMChatParameters) { |
| 65 | + const client = this.getClient(this.config); |
| 66 | + const [txHash, finishReason, message] = await client.llmChat( |
| 67 | + parameters.modelCid, |
| 68 | + parameters.inferenceMode, |
| 69 | + parameters.messages, |
| 70 | + parameters.maxTokens, |
| 71 | + parameters.stopSequence, |
| 72 | + parameters.temperature, |
| 73 | + parameters.tools, |
| 74 | + parameters.toolChoice, |
| 75 | + ); |
| 76 | + |
| 77 | + return { |
| 78 | + transactionHash: txHash, |
| 79 | + finishReason, |
| 80 | + message, |
| 81 | + }; |
| 82 | + } |
| 83 | +} |
0 commit comments