quivr/backend/llm/models/FunctionCall.py
Matt e931d29017
feat: new classes (#499)
* feat: new classes

* chore: private llm refactor and enable streaming

* fix: validation errors in pytest

* fix: default brain behavior

* Update backend/llm/base.py

* chore: remove 🪦

* fix: remove 🪦
2023-07-04 16:56:54 +01:00

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