mirror of
https://github.com/jie65535/JChatGPT.git
synced 2026-09-15 02:56:10 +08:00
profile: add progressive user profiles
Add cache-expiry profile maintenance and contextual injection, reorganize runtime code by responsibility, remove automatic favorability decay, and prepare version 1.15.0.
This commit is contained in:
@@ -0,0 +1,141 @@
|
||||
package top.jie65535.mirai.llm
|
||||
|
||||
import com.aallam.openai.api.chat.ChatCompletionChunk
|
||||
import com.aallam.openai.api.chat.ChatCompletionRequest
|
||||
import io.ktor.client.*
|
||||
import io.ktor.client.call.body
|
||||
import io.ktor.client.engine.okhttp.*
|
||||
import io.ktor.client.plugins.*
|
||||
import io.ktor.client.request.*
|
||||
import io.ktor.client.statement.*
|
||||
import io.ktor.http.*
|
||||
import io.ktor.utils.io.*
|
||||
import kotlinx.coroutines.currentCoroutineContext
|
||||
import kotlinx.coroutines.flow.Flow
|
||||
import kotlinx.coroutines.flow.flow
|
||||
import kotlinx.coroutines.isActive
|
||||
import kotlinx.coroutines.withTimeout
|
||||
import kotlinx.serialization.json.*
|
||||
import kotlin.time.Duration
|
||||
|
||||
class ModelService(
|
||||
val baseUrl: String,
|
||||
val token: String,
|
||||
val timeout: Duration,
|
||||
val firstChunkTimeout: Duration,
|
||||
val extraBody: JsonObject? = null
|
||||
) {
|
||||
val httpClient: HttpClient by lazy {
|
||||
HttpClient(OkHttp) {
|
||||
install(HttpTimeout) {
|
||||
// 流式响应的「首 token」与「token 间隔」超时统一由应用层 withTimeout 管控(见 chatCompletions)。
|
||||
// 这里特意不设 requestTimeoutMillis:否则正常但耗时较长的流式输出会被 Ktor 在中途整体掐断。
|
||||
// socket 超时作为字节级兜底,连接超时只覆盖 TCP 握手。
|
||||
socketTimeoutMillis = timeout.inWholeMilliseconds
|
||||
connectTimeoutMillis = firstChunkTimeout.inWholeMilliseconds
|
||||
}
|
||||
defaultRequest {
|
||||
url(baseUrl)
|
||||
bearerAuth(token)
|
||||
}
|
||||
expectSuccess = true
|
||||
}
|
||||
}
|
||||
|
||||
private val json = Json {
|
||||
isLenient = true
|
||||
ignoreUnknownKeys = true
|
||||
explicitNulls = false
|
||||
}
|
||||
|
||||
/** openai-kotlin 的 Usage 尚未暴露缓存明细,因此从原始 JSON 读取。 */
|
||||
data class CacheUsage(val hitTokens: Int, val missTokens: Int)
|
||||
|
||||
/** 从原始 data 行(已去掉 "data: " 前缀)解析缓存命中用量;无相关字段返回 null。 */
|
||||
internal fun extractCacheUsage(rawJson: String): CacheUsage? {
|
||||
return try {
|
||||
val usage = json.parseToJsonElement(rawJson).jsonObject["usage"]?.jsonObject ?: return null
|
||||
val promptTokens = usage["prompt_tokens"]?.jsonPrimitive?.intOrNull
|
||||
val promptDetails = usage["prompt_tokens_details"]?.jsonObject
|
||||
val hit = usage["prompt_cache_hit_tokens"]?.jsonPrimitive?.intOrNull
|
||||
?: promptDetails?.get("cached_tokens")?.jsonPrimitive?.intOrNull
|
||||
val miss = usage["prompt_cache_miss_tokens"]?.jsonPrimitive?.intOrNull
|
||||
?: if (hit != null && promptTokens != null) (promptTokens - hit).coerceAtLeast(0) else null
|
||||
if (hit == null && miss == null) null else CacheUsage(hit ?: 0, miss ?: 0)
|
||||
} catch (_: Exception) {
|
||||
null
|
||||
}
|
||||
}
|
||||
|
||||
fun chatCompletions(
|
||||
request: ChatCompletionRequest,
|
||||
onCacheUsage: ((CacheUsage) -> Unit)? = null
|
||||
): Flow<ChatCompletionChunk> {
|
||||
val requestJson = json.encodeToJsonElement(ChatCompletionRequest.serializer(), request)
|
||||
.jsonObject.toMutableMap()
|
||||
requestJson["stream"] = JsonPrimitive(true)
|
||||
extraBody?.forEach { (key, value) ->
|
||||
requestJson[key] = value
|
||||
}
|
||||
val body = JsonObject(requestJson).toString()
|
||||
|
||||
return flow {
|
||||
// 关键:服务器繁忙时会拖住「响应头」,使 httpClient.post() 自身阻塞在等待响应的阶段,
|
||||
// 因此必须把 post() 连同首个 data 块的读取一起包进 withTimeout。
|
||||
// 否则首 token 超时永远不会触发(post() 还没返回,根本进不到读取循环),
|
||||
// 只能落到 Ktor 的兜底超时(很久)后再重试,表现为「等很久才报异常」。
|
||||
// channel 在 withTimeout 外层持有:哪怕首块读取在 withTimeout 内超时,
|
||||
// 只要 response.body() 已拿到通道,finally 也能释放它,避免慢速 API 重试时连接泄漏。
|
||||
var channel: ByteReadChannel? = null
|
||||
try {
|
||||
val firstDataLine = withTimeout(firstChunkTimeout) {
|
||||
val response = httpClient.post("chat/completions") {
|
||||
setBody(body)
|
||||
contentType(ContentType.Application.Json)
|
||||
accept(ContentType.Text.EventStream)
|
||||
headers {
|
||||
append(HttpHeaders.CacheControl, "no-cache")
|
||||
append(HttpHeaders.Connection, "keep-alive")
|
||||
}
|
||||
}
|
||||
val ch: ByteReadChannel = response.body()
|
||||
channel = ch
|
||||
var found: String? = null
|
||||
while (currentCoroutineContext().isActive && !ch.isClosedForRead) {
|
||||
val line = ch.readUTF8Line() ?: continue
|
||||
if (line.startsWith("data: ")) {
|
||||
found = line
|
||||
break
|
||||
}
|
||||
// 心跳/空行/注释行,不计为首块,继续等
|
||||
}
|
||||
found
|
||||
}
|
||||
|
||||
if (firstDataLine != null && !firstDataLine.startsWith("data: [DONE]")) {
|
||||
val firstRaw = firstDataLine.removePrefix("data: ")
|
||||
emit(json.decodeFromString(firstRaw))
|
||||
onCacheUsage?.let { cb -> extractCacheUsage(firstRaw)?.let(cb) }
|
||||
|
||||
val ch = channel!!
|
||||
while (currentCoroutineContext().isActive && !ch.isClosedForRead) {
|
||||
// 流式期间同样对每次读取设「token 间隔」超时,避免中途卡死后干等兜底超时,
|
||||
// 从而能快速失败并交给上层重试。正常流式 token 间隔远小于 firstChunkTimeout。
|
||||
val line = withTimeout(firstChunkTimeout) { ch.readUTF8Line() } ?: continue
|
||||
when {
|
||||
line.startsWith("data: [DONE]") -> break
|
||||
line.startsWith("data: ") -> {
|
||||
val raw = line.removePrefix("data: ")
|
||||
emit(json.decodeFromString(raw))
|
||||
onCacheUsage?.let { cb -> extractCacheUsage(raw)?.let(cb) }
|
||||
}
|
||||
else -> continue
|
||||
}
|
||||
}
|
||||
}
|
||||
} finally {
|
||||
channel?.cancel()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user