mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-20 09:42:12 +03:00
14 lines
329 B
Python
14 lines
329 B
Python
from typing import Optional
|
|
|
|
from .FunctionCall import FunctionCall
|
|
|
|
|
|
class OpenAiAnswer:
|
|
def __init__(
|
|
self,
|
|
content: Optional[str] = None,
|
|
function_call: FunctionCall = None, # pyright: ignore reportPrivateUsage=none
|
|
):
|
|
self.content = content
|
|
self.function_call = function_call
|