[feature][chat]Introduce dedicated LLM management.#1739

This commit is contained in:
jerryjzhang
2024-10-09 12:00:24 +08:00
parent 0654a54c8d
commit 7b9ff2e281
22 changed files with 367 additions and 43 deletions

View File

@@ -0,0 +1,14 @@
package com.tencent.supersonic.common.pojo.enums;
public enum ChatModelType {
TEXT_TO_SQL("Convert text query to SQL statement"), MULTI_TURN_REWRITE(
"Rewrite text query for multi-turn conversation"), MEMORY_REVIEW(
"Review memory in order to add few-shot examples"), RESPONSE_GENERATE(
"Generate readable response to the end user");
private String description;
ChatModelType(String description) {
this.description = description;
}
}