agenthink 0.1.21__tar.gz → 0.1.22__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {agenthink-0.1.21 → agenthink-0.1.22}/PKG-INFO +1 -1
- {agenthink-0.1.21 → agenthink-0.1.22}/pyproject.toml +1 -1
- agenthink-0.1.22/src/agenthink/models.py +31 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink.egg-info/PKG-INFO +1 -1
- agenthink-0.1.21/src/agenthink/models.py +0 -19
- {agenthink-0.1.21 → agenthink-0.1.22}/README.md +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/setup.cfg +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink/__init__.py +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink/connection.py +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink/data_source.py +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink/utils.py +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink.egg-info/SOURCES.txt +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink.egg-info/dependency_links.txt +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink.egg-info/requires.txt +0 -0
- {agenthink-0.1.21 → agenthink-0.1.22}/src/agenthink.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from pydantic import BaseModel
|
|
2
|
+
from typing import List, Optional
|
|
3
|
+
from typing import Any, Dict
|
|
4
|
+
|
|
5
|
+
# class ConnectionRequest(BaseModel):
|
|
6
|
+
# query: str
|
|
7
|
+
# user_id: str
|
|
8
|
+
# session_id: str
|
|
9
|
+
# workflow_id: str
|
|
10
|
+
# datastore: Optional[List] = []
|
|
11
|
+
# tools: Optional[List] = []
|
|
12
|
+
|
|
13
|
+
# class ConnectionRequest(BaseModel):
|
|
14
|
+
# query: Optional[str] = None
|
|
15
|
+
# user_id: Optional[str] = None
|
|
16
|
+
# session_id: Optional[str] = None
|
|
17
|
+
# workflow_id: Optional[str] = None
|
|
18
|
+
# datastore: Optional[List] = None
|
|
19
|
+
# tools: Optional[List] = None
|
|
20
|
+
# d365request: Optional[dict] = None
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class ConnectionRequest(BaseModel):
|
|
24
|
+
query: Optional[str] = None
|
|
25
|
+
user_id: Optional[str] = None
|
|
26
|
+
session_id: Optional[str] = None
|
|
27
|
+
workflow_id: Optional[str] = None
|
|
28
|
+
datastore_id: Optional[str] = None
|
|
29
|
+
datastore: Optional[List[Dict[str, Any]]] = None
|
|
30
|
+
tools: Optional[List[Dict[str, Any]]] = None
|
|
31
|
+
d365request: Optional[List[Dict[str, Any]]] = None
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from pydantic import BaseModel
|
|
2
|
-
from typing import List, Optional
|
|
3
|
-
|
|
4
|
-
# class ConnectionRequest(BaseModel):
|
|
5
|
-
# query: str
|
|
6
|
-
# user_id: str
|
|
7
|
-
# session_id: str
|
|
8
|
-
# workflow_id: str
|
|
9
|
-
# datastore: Optional[List] = []
|
|
10
|
-
# tools: Optional[List] = []
|
|
11
|
-
|
|
12
|
-
class ConnectionRequest(BaseModel):
|
|
13
|
-
query: Optional[str] = None
|
|
14
|
-
user_id: Optional[str] = None
|
|
15
|
-
session_id: Optional[str] = None
|
|
16
|
-
workflow_id: Optional[str] = None
|
|
17
|
-
datastore: Optional[List] = None
|
|
18
|
-
tools: Optional[List] = None
|
|
19
|
-
d365request: Optional[dict] = None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|