mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 18:52:12 +03:00
13 lines
266 B
Python
13 lines
266 B
Python
from typing import Optional
|
|
from typing import Any, Dict
|
|
|
|
|
|
class FunctionCall:
|
|
def __init__(
|
|
self,
|
|
name: Optional[str] = None,
|
|
arguments: Optional[Dict[str, Any]] = None,
|
|
):
|
|
self.name = name
|
|
self.arguments = arguments
|