We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99c8970 + ec3fc18 commit af28b1fCopy full SHA for af28b1f
1 file changed
mindsdb_sdk/utils/mind.py
@@ -1,3 +1,5 @@
1
+from typing import Optional
2
+
3
import requests
4
from logging import getLogger
5
@@ -18,12 +20,11 @@ def __init__(self, name):
18
20
def create_mind(
19
21
base_url: str,
22
api_key: str,
-
23
name: str,
24
description: str,
- model: str,
25
data_source_type: str,
26
data_source_connection_args: dict,
27
+ model: Optional[str] = None,
28
) -> Mind:
29
"""
30
Create a mind entity in LiteLLM proxy.
0 commit comments