1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.smtaiserver.smtaiserver.javaai.llm.core;
|
| import com.smtaiserver.smtaiserver.database.SMTDatabase.DBRecord;
|
| public abstract class SMTLLMFactory
| {
| private String _id;
|
| public void initInstance(DBRecord rec) throws Exception
| {
| _id = rec.getString("connect_id");
| }
|
| public String getId()
| {
| return _id;
| }
|
| public abstract SMTLLMConnect allocLLM() throws Exception;
| }
|
|