File size: 18,569 Bytes
4cb71cc 9e1fc4c 2c8368f bbfbcdd 9e1fc4c 2c8368f 3c093fa 9e1fc4c 2c8368f 9e1fc4c 2c8368f bbfbcdd 2c8368f bbfbcdd 2c8368f 9e1fc4c 4cb71cc 9e1fc4c 4cb71cc 9e1fc4c 2c8368f 9e1fc4c 2c8368f 9e1fc4c 4cb71cc bbfbcdd 9e1fc4c 2c8368f 9e1fc4c 3c093fa 9e1fc4c 46c2685 aa26750 46c2685 9e1fc4c 2c8368f 9e1fc4c 2c8368f 9e1fc4c 2c8368f 9e1fc4c 2c8368f 9e1fc4c 2c8368f 9e1fc4c 2c8368f 3c093fa 2c8368f 3c093fa 2c8368f 9e1fc4c 2c8368f 9e1fc4c 2c8368f 9e1fc4c 8d27c84 9e1fc4c 8d27c84 9e1fc4c 8d27c84 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 3c093fa 9e1fc4c 8d27c84 9e1fc4c c476a18 aa26750 c476a18 9e1fc4c 2c8368f 7b9a08a aa26750 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# models.py
from __future__ import annotations
from typing import Any, Optional, List, Dict, Callable
from datetime import datetime, timezone
from pydantic import BaseModel, Field, ConfigDict
from dataclasses import dataclass
from zoneinfo import ZoneInfo
import secrets
import string
# ---------------- Nanoid-ish helper ----------------
_ALPHABET = string.ascii_letters + string.digits
def _nanoid(size: int = 21) -> str:
return "".join(secrets.choice(_ALPHABET) for _ in range(size))
# ---------- CloudEvent (kept for convenience; you can move to events.py) ----------
class CloudEvent(BaseModel):
specversion: str = "1.0"
id: str
type: str
source: str
time: datetime
datacontenttype: str = "application/json"
data: Optional[Any] = None
@staticmethod
def now_utc() -> datetime:
return datetime.now(timezone.utc)
@classmethod
def wrap(cls, *, event_id: str, event_type: str, source: str, data: Any) -> "CloudEvent":
return cls(
id=event_id,
type=event_type or ("NullOrEmpty" if data is None else type(data).__name__),
source=source,
time=cls.now_utc(),
data=data,
)
# ---------- FunctionCallData ----------
class FunctionCallData(BaseModel):
function: Optional[str] = None
name: Optional[str] = None
arguments: Optional[Dict[str, Any]] = None
parameters: Optional[Dict[str, Any]] = None
def copy_from(self, other: "FunctionCallData") -> None:
if other is None:
return
self.function = other.function
self.name = other.name
self.arguments = None if other.arguments is None else dict(other.arguments)
self.parameters = None if other.parameters is None else dict(other.parameters)
# ---------- FunctionState (full API parity with your C#) ----------
class FunctionState(BaseModel):
IsFunctionCall: bool = False
IsFunctionCallResponse: bool = False
IsFunctionCallError: bool = False
IsFunctionCallStatus: bool = False
IsFunctionStillRunning: bool = False
# --- C#-style mutators ---
def SetAsCall(self) -> "FunctionState":
self.IsFunctionCall = True
self.IsFunctionCallResponse = False
self.IsFunctionCallError = False
self.IsFunctionCallStatus = False
self.IsFunctionStillRunning = False
return self
# Note: C# calls SetAsCallError() -> SetAsCall(); mirroring that quirk.
def SetAsCallError(self) -> "FunctionState":
return self.SetAsCall()
def SetAsNotCall(self) -> "FunctionState":
self.IsFunctionCall = False
self.IsFunctionCallResponse = False
self.IsFunctionCallError = False
self.IsFunctionCallStatus = False
self.IsFunctionStillRunning = False
return self
def SetAsResponseComplete(self) -> "FunctionState":
self.IsFunctionCall = False
self.IsFunctionCallResponse = True
self.IsFunctionCallError = False
self.IsFunctionCallStatus = False
self.IsFunctionStillRunning = False
return self
def SetOnlyResponse(self) -> "FunctionState":
# Response arrived, not explicitly "complete"
self.IsFunctionCall = False
self.IsFunctionCallResponse = True
self.IsFunctionCallError = False
self.IsFunctionCallStatus = False
# leave StillRunning as-is
return self
def SetAsResponseRunning(self) -> "FunctionState":
self.IsFunctionCall = False
self.IsFunctionCallResponse = False
self.IsFunctionCallError = False
self.IsFunctionCallStatus = False
self.IsFunctionStillRunning = True
return self
def SetAsResponseStatus(self) -> "FunctionState":
self.IsFunctionCall = False
self.IsFunctionCallResponse = False
self.IsFunctionCallError = False
self.IsFunctionCallStatus = True
self.IsFunctionStillRunning = True
return self
def SetAsResponseStatusOnly(self) -> "FunctionState":
self.IsFunctionCall = False
self.IsFunctionCallResponse = False
self.IsFunctionCallError = False
self.IsFunctionCallStatus = True
self.IsFunctionStillRunning = False
return self
def SetAsResponseError(self) -> "FunctionState":
self.IsFunctionCall = False
self.IsFunctionCallResponse = False
self.IsFunctionCallError = True
self.IsFunctionCallStatus = False
self.IsFunctionStillRunning = False
return self
def SetAsResponseErrorComplete(self) -> "FunctionState":
# error, and mark "complete" by not running
self.IsFunctionCall = False
self.IsFunctionCallResponse = True
self.IsFunctionCallError = True
self.IsFunctionCallStatus = False
self.IsFunctionStillRunning = False
return self
def SetFunctionState(
self,
functionCall: bool,
functionCallResponse: bool,
functionCallError: bool,
functionCallStatus: bool,
functionStillRunning: bool,
) -> "FunctionState":
self.IsFunctionCall = functionCall
self.IsFunctionCallResponse = functionCallResponse
self.IsFunctionCallError = functionCallError
self.IsFunctionCallStatus = functionCallStatus
self.IsFunctionStillRunning = functionStillRunning
return self
def StatesString(self) -> str:
return (
f"IsFunctionCall={self.IsFunctionCall}, "
f"IsFunctionCallResponse={self.IsFunctionCallResponse}, "
f"IsFunctionCallError={self.IsFunctionCallError}, "
f"IsFunctionCallStatus={self.IsFunctionCallStatus}, "
f"IsFunctionStillRunning={self.IsFunctionStillRunning}"
)
# ---------- UserInfo ----------
class UserInfo(BaseModel):
UserID: Optional[str] = None
DateCreated: datetime = Field(default_factory=lambda: datetime.now(timezone.utc))
HostLimit: int = 0
DisableEmail: bool = False
Status: Optional[str] = ""
Name: Optional[str] = ""
Given_name: Optional[str] = ""
Family_name: Optional[str] = ""
Nickname: Optional[str] = ""
Sub: Optional[str] = ""
Enabled: bool = True
MonitorAlertEnabled: bool = True
PredictAlertEnabled: bool = False
AccountType: Optional[str] = "Default"
Email: Optional[str] = ""
Email_verified: bool = False
Picture: Optional[str] = ""
Updated_at: datetime = Field(default_factory=lambda: datetime.now(timezone.utc))
LastLoginDate: datetime = Field(default_factory=lambda: datetime.now(timezone.utc))
CustomerId: Optional[str] = ""
CancelAt: Optional[datetime] = None
TokensUsed: int = 0
LoadServer: Dict[str, Any] = Field(default_factory=dict)
def copy_from(self, other: "UserInfo") -> None:
if other is None:
return
for k, v in other.model_dump().items():
setattr(self, k, v)
class LLMServiceObj(BaseModel):
"""
Python port of NetworkMonitor.Objects.ServiceMessage.LLMServiceObj
– same JSON/wire names via aliases, no Pydantic forward-ref clash.
"""
model_config = ConfigDict(populate_by_name=True)
# ---------------- Convenience accessors (no name shadowing) ----------------
# Allow llm.FunctionCallData / llm.UserInfo while real fields stay
# function_call_data / user_info (aliased for JSON).
def __getattr__(self, name):
if name == "FunctionCallData":
return super().__getattribute__("function_call_data")
if name == "UserInfo":
return super().__getattribute__("user_info")
raise AttributeError(f"{type(self).__name__} has no attribute {name!r}")
def __setattr__(self, name, value):
if name == "FunctionCallData":
return super().__setattr__("function_call_data", value)
if name == "UserInfo":
return super().__setattr__("user_info", value)
return super().__setattr__(name, value)
# --- core strings ---
MessageID: str = Field(default_factory=_nanoid)
RequestSessionId: str = ""
SessionId: str = ""
UserInput: str = ""
JsonFunction: str = ""
FunctionName: str = ""
SwapFunctionName: str = ""
LLMRunnerType: str = "TurboLLM"
SourceLlm: str = ""
DestinationLlm: str = ""
TimeZone: str = ""
LlmMessage: str = ""
ResultMessage: str = ""
LlmSessionStartName: str = ""
ChatAgentLocation: str = ""
ToolsDefinitionId: Optional[str] = None
JsonToolsBuilderSpec: Optional[str] = None
# --- flags / ints ---
TokensUsed: int = 0
IsUserLoggedIn: bool = False
ResultSuccess: bool = False
IsFuncAck: bool = False
IsProcessed: bool = False
IsSystemLlm: bool = False
Timeout: Optional[int] = None
# --- complex (use aliases to preserve JSON names) ---
FunctionCallId: str = ""
function_call_data: FunctionCallData = Field(default_factory=FunctionCallData, alias="FunctionCallData")
user_info: UserInfo = Field(default_factory=UserInfo, alias="UserInfo")
# --- stacks ---
LlmStack: List[str] = Field(default_factory=list)
FunctionCallIdStack: List[str] = Field(default_factory=list)
FunctionNameStack: List[str] = Field(default_factory=list)
MessageIDStack: List[str] = Field(default_factory=list)
IsProcessedStack: List[bool] = Field(default_factory=list)
# --- function state ---
functionState: FunctionState = Field(default_factory=FunctionState)
# --- timing ---
StartTimeUTC: datetime = Field(default_factory=lambda: datetime.now(timezone.utc))
# ---------------- Constructors / copy semantics ----------------
@classmethod
def from_other(cls, other: "LLMServiceObj") -> "LLMServiceObj":
inst = cls()
inst.copy_from(other)
return inst
@classmethod
def from_other_with_state(cls, other: "LLMServiceObj", configure: Callable[[FunctionState], None]) -> "LLMServiceObj":
inst = cls()
inst.functionState = FunctionState()
inst.copy_from(other)
if configure:
configure(inst.functionState)
return inst
def copy_from(self, other: "LLMServiceObj") -> None:
if other is None:
return
# primitives
self.RequestSessionId = other.RequestSessionId
self.SessionId = other.SessionId
self.UserInput = other.UserInput
self.IsUserLoggedIn = other.IsUserLoggedIn
self.JsonFunction = other.JsonFunction
# state
self.functionState = FunctionState().SetFunctionState(
other.IsFunctionCall,
other.IsFunctionCallResponse,
other.IsFunctionCallError,
other.IsFunctionCallStatus,
other.IsFunctionStillRunning,
)
# more primitives
self.FunctionName = other.FunctionName
self.FunctionCallId = other.FunctionCallId
self.LLMRunnerType = other.LLMRunnerType
self.SourceLlm = other.SourceLlm
self.DestinationLlm = other.DestinationLlm
self.TokensUsed = other.TokensUsed
self.LlmMessage = other.LlmMessage
self.IsSystemLlm = other.IsSystemLlm
self.ResultSuccess = other.ResultSuccess
self.ResultMessage = other.ResultMessage
self.TimeZone = other.TimeZone
self.LlmSessionStartName = other.LlmSessionStartName
self.MessageID = other.MessageID
self.StartTimeUTC = other.StartTimeUTC
self.ChatAgentLocation = other.ChatAgentLocation
self.ToolsDefinitionId = other.ToolsDefinitionId
self.JsonToolsBuilderSpec = other.JsonToolsBuilderSpec
self.Timeout = other.Timeout
self.SwapFunctionName = other.SwapFunctionName
self.IsFuncAck = other.IsFuncAck
self.IsProcessed = other.IsProcessed
# deep copies
self.function_call_data = other.function_call_data.model_copy(deep=True)
self.user_info = other.user_info.model_copy(deep=True)
self.LlmStack = list(other.LlmStack)
self.FunctionCallIdStack = list(other.FunctionCallIdStack)
self.FunctionNameStack = list(other.FunctionNameStack)
self.MessageIDStack = list(other.MessageIDStack)
self.IsProcessedStack = list(other.IsProcessedStack)
# ---------------- Function state passthroughs ----------------
def GetFunctionStateString(self) -> str:
return self.functionState.StatesString()
def SetAsCall(self) -> None: self.functionState.SetAsCall()
def SetAsCallError(self) -> None: self.functionState.SetAsCallError()
def SetAsNotCall(self) -> None: self.functionState.SetAsNotCall()
def SetAsResponseComplete(self) -> None: self.functionState.SetAsResponseComplete()
def SetOnlyResponse(self) -> None: self.functionState.SetOnlyResponse()
def SetAsResponseRunning(self) -> None: self.functionState.SetAsResponseRunning()
def SetAsResponseStatus(self) -> None: self.functionState.SetAsResponseStatus()
def SetAsResponseStatusOnly(self) -> None: self.functionState.SetAsResponseStatusOnly()
def SetAsResponseError(self) -> None: self.functionState.SetAsResponseError()
def SetAsResponseErrorComplete(self) -> None: self.functionState.SetAsResponseErrorComplete()
def SetFunctionState(self, a: bool, b: bool, c: bool, d: bool, e: bool) -> None:
self.functionState.SetFunctionState(a, b, c, d, e)
# forwarders to preserve .IsFunction* flags on the parent
@property
def IsFunctionCall(self) -> bool: return self.functionState.IsFunctionCall
@IsFunctionCall.setter
def IsFunctionCall(self, v: bool) -> None: self.functionState.IsFunctionCall = v
@property
def IsFunctionCallResponse(self) -> bool: return self.functionState.IsFunctionCallResponse
@IsFunctionCallResponse.setter
def IsFunctionCallResponse(self, v: bool) -> None: self.functionState.IsFunctionCallResponse = v
@property
def IsFunctionCallError(self) -> bool: return self.functionState.IsFunctionCallError
@IsFunctionCallError.setter
def IsFunctionCallError(self, v: bool) -> None: self.functionState.IsFunctionCallError = v
@property
def IsFunctionCallStatus(self) -> bool: return self.functionState.IsFunctionCallStatus
@IsFunctionCallStatus.setter
def IsFunctionCallStatus(self, v: bool) -> None: self.functionState.IsFunctionCallStatus = v
@property
def IsFunctionStillRunning(self) -> bool: return self.functionState.IsFunctionStillRunning
@IsFunctionStillRunning.setter
def IsFunctionStillRunning(self, v: bool) -> None: self.functionState.IsFunctionStillRunning = v
# ---------------- Stack helpers & routing props ----------------
def PopLlm(self) -> None:
if self.LlmStack:
self.SourceLlm = self.LlmStack.pop()
self.DestinationLlm = self.SourceLlm
self.PopMessageID()
self.PopFunctionCallId()
self.PopFunctionName()
self.PopIsProcessed()
def PushLmm(self, llmName: str, newFunctionCallId: str, newFunctionName: str, newMessageID: str, newIsProcessed: bool) -> None:
if self.SourceLlm:
self.LlmStack.append(self.SourceLlm)
self.SourceLlm = self.DestinationLlm
self.DestinationLlm = llmName
self.PushMessageID(newMessageID)
self.PushFunctionCallId(newFunctionCallId)
self.PushFunctionName(newFunctionName)
self.PushIsProcessed(newIsProcessed)
@property
def LlmChainStartName(self) -> str:
return self.SourceLlm if not self.LlmStack else self.LlmStack[0]
@property
def RootMessageID(self) -> str:
return self.MessageID if not self.MessageIDStack else self.MessageIDStack[0]
@property
def FirstFunctionName(self) -> str:
return self.FunctionName if not self.FunctionNameStack else self.FunctionNameStack[0]
@property
def IsPrimaryLlm(self) -> bool:
return False if self.IsSystemLlm else (self.SourceLlm == self.DestinationLlm)
def PopMessageID(self) -> None:
if self.MessageIDStack:
self.MessageID = self.MessageIDStack.pop()
def PushMessageID(self, newMessageID: str) -> None:
if self.MessageID:
self.MessageIDStack.append(self.MessageID)
self.MessageID = newMessageID
def PopFunctionCallId(self) -> None:
if self.FunctionCallIdStack:
self.FunctionCallId = self.FunctionCallIdStack.pop()
def PushFunctionCallId(self, newFunctionCallId: str) -> None:
if self.FunctionCallId:
self.FunctionCallIdStack.append(self.FunctionCallId)
self.FunctionCallId = newFunctionCallId
def PopFunctionName(self) -> None:
if self.FunctionNameStack:
self.FunctionName = self.FunctionNameStack.pop()
def PushFunctionName(self, newFunctionName: str) -> None:
if self.FunctionName:
self.FunctionNameStack.append(self.FunctionName)
self.FunctionName = newFunctionName
def PushIsProcessed(self, newIsProcessed: bool) -> None:
self.IsProcessedStack.append(self.IsProcessed)
self.IsProcessed = newIsProcessed
def PopIsProcessed(self) -> None:
if self.IsProcessedStack:
self.IsProcessed = self.IsProcessedStack.pop()
# ---------------- Client time helpers ----------------
def _tz(self) -> ZoneInfo:
try:
return ZoneInfo(self.TimeZone) if self.TimeZone else ZoneInfo("UTC")
except Exception:
return ZoneInfo("UTC")
def GetClientCurrentTime(self) -> datetime:
try:
return datetime.now(timezone.utc).astimezone(self._tz())
except Exception:
return datetime.now(timezone.utc)
def GetClientStartTime(self) -> datetime:
try:
return self.StartTimeUTC.astimezone(self._tz())
except Exception:
return datetime.now(timezone.utc)
def GetClientCurrentUnixTime(self) -> int:
try:
return int(self.GetClientCurrentTime().timestamp())
except Exception:
return int(datetime.now(timezone.utc).timestamp())
def GetClientStartUnixTime(self) -> int:
try:
return int(self.GetClientStartTime().timestamp())
except Exception:
return int(datetime.now(timezone.utc).timestamp())
# ---------- ResultObj ----------
class ResultObj(BaseModel):
Message: str = ""
Success: bool = False
Data: Optional[Any] = None
|