greydgl--pentestgpt
6a767aae02
* feat: 🎸 add new models * minor readme update * style: format code with Black This commit fixes the style issues introduced in dafa18b according to the output from Black. Details: https://github.com/GreyDGL/PentestGPT/pull/274 --------- Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
12 行
265 B
Python
12 行
265 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class StreamingDelta:
|
|
role: str | None = None
|
|
content: str | None = None
|
|
function_call: dict | None = None
|
|
tool_calls: list | None = None
|
|
name: str | None = None
|
|
is_thinking: bool | None = None
|