seekrai 0.5.2__py3-none-any.whl → 0.5.24__py3-none-any.whl
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.
- seekrai/abstract/response_parsing.py +2 -0
- seekrai/client.py +8 -0
- seekrai/resources/__init__.py +20 -2
- seekrai/resources/agents/__init__.py +12 -0
- seekrai/resources/agents/agent_inference.py +37 -10
- seekrai/resources/agents/agent_observability.py +135 -0
- seekrai/resources/agents/agents.py +51 -0
- seekrai/resources/agents/python_functions.py +295 -0
- seekrai/resources/alignment.py +460 -1
- seekrai/resources/chat/completions.py +17 -8
- seekrai/resources/embeddings.py +2 -2
- seekrai/resources/explainability.py +92 -0
- seekrai/resources/finetune.py +44 -0
- seekrai/resources/ingestion.py +5 -7
- seekrai/resources/models.py +0 -3
- seekrai/resources/vectordb.py +36 -2
- seekrai/types/__init__.py +30 -3
- seekrai/types/agents/__init__.py +25 -3
- seekrai/types/agents/agent.py +11 -0
- seekrai/types/agents/observability.py +34 -0
- seekrai/types/agents/python_functions.py +29 -0
- seekrai/types/agents/runs.py +51 -1
- seekrai/types/agents/tools/__init__.py +12 -2
- seekrai/types/agents/tools/schemas/__init__.py +8 -0
- seekrai/types/agents/tools/schemas/file_search.py +1 -1
- seekrai/types/agents/tools/schemas/file_search_env.py +0 -1
- seekrai/types/agents/tools/schemas/run_python.py +9 -0
- seekrai/types/agents/tools/schemas/run_python_env.py +8 -0
- seekrai/types/agents/tools/schemas/web_search.py +9 -0
- seekrai/types/agents/tools/schemas/web_search_env.py +7 -0
- seekrai/types/agents/tools/tool.py +9 -3
- seekrai/types/agents/tools/tool_types.py +4 -4
- seekrai/types/alignment.py +36 -0
- seekrai/types/chat_completions.py +1 -0
- seekrai/types/deployments.py +2 -0
- seekrai/types/explainability.py +26 -0
- seekrai/types/files.py +2 -1
- seekrai/types/finetune.py +40 -7
- seekrai/types/vectordb.py +6 -1
- {seekrai-0.5.2.dist-info → seekrai-0.5.24.dist-info}/METADATA +3 -6
- seekrai-0.5.24.dist-info/RECORD +76 -0
- {seekrai-0.5.2.dist-info → seekrai-0.5.24.dist-info}/WHEEL +1 -1
- seekrai/types/agents/tools/tool_env_types.py +0 -4
- seekrai-0.5.2.dist-info/RECORD +0 -67
- {seekrai-0.5.2.dist-info → seekrai-0.5.24.dist-info}/LICENSE +0 -0
- {seekrai-0.5.2.dist-info → seekrai-0.5.24.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
from typing import Literal
|
|
2
|
+
|
|
3
|
+
from seekrai.types.agents.tools.schemas.run_python_env import RunPythonEnv
|
|
4
|
+
from seekrai.types.agents.tools.tool import ToolBase, ToolType
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class RunPython(ToolBase[RunPythonEnv]):
|
|
8
|
+
name: Literal[ToolType.RUN_PYTHON] = ToolType.RUN_PYTHON
|
|
9
|
+
tool_env: RunPythonEnv
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
from typing import Literal
|
|
2
|
+
|
|
3
|
+
from seekrai.types.agents.tools.schemas.web_search_env import WebSearchEnv
|
|
4
|
+
from seekrai.types.agents.tools.tool import ToolBase, ToolType
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class WebSearch(ToolBase[WebSearchEnv]):
|
|
8
|
+
name: Literal[ToolType.WEB_SEARCH] = ToolType.WEB_SEARCH
|
|
9
|
+
tool_env: WebSearchEnv
|
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
import enum
|
|
2
|
+
from typing import Generic, TypeVar
|
|
2
3
|
|
|
3
4
|
from pydantic import BaseModel
|
|
4
5
|
|
|
5
|
-
from seekrai.types.agents.tools.
|
|
6
|
+
from seekrai.types.agents.tools.env_model_config import EnvConfig
|
|
6
7
|
|
|
7
8
|
|
|
8
9
|
class ToolType(str, enum.Enum):
|
|
9
10
|
FILE_SEARCH = "file_search"
|
|
11
|
+
WEB_SEARCH = "web_search"
|
|
12
|
+
RUN_PYTHON = "run_python"
|
|
10
13
|
|
|
11
14
|
|
|
12
|
-
|
|
15
|
+
TEnv = TypeVar("TEnv", bound=EnvConfig)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class ToolBase(BaseModel, Generic[TEnv]):
|
|
13
19
|
name: ToolType
|
|
14
|
-
tool_env:
|
|
20
|
+
tool_env: TEnv
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
from typing import Annotated
|
|
1
|
+
from typing import Annotated, Union
|
|
2
2
|
|
|
3
3
|
from pydantic import Field
|
|
4
4
|
|
|
5
5
|
from seekrai.types.agents.tools.schemas.file_search import FileSearch
|
|
6
|
+
from seekrai.types.agents.tools.schemas.run_python import RunPython
|
|
7
|
+
from seekrai.types.agents.tools.schemas.web_search import WebSearch
|
|
6
8
|
|
|
7
9
|
|
|
8
|
-
Tool = Annotated[
|
|
9
|
-
FileSearch, Field(discriminator="name")
|
|
10
|
-
] # will be a Union of tools when more are added
|
|
10
|
+
Tool = Annotated[Union[FileSearch, WebSearch, RunPython], Field(discriminator="name")]
|
seekrai/types/alignment.py
CHANGED
|
@@ -7,6 +7,7 @@ from typing import List, Literal, Optional
|
|
|
7
7
|
from pydantic import Field
|
|
8
8
|
|
|
9
9
|
from seekrai.types.abstract import BaseModel
|
|
10
|
+
from seekrai.types.files import FilePurpose, FileType
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
class AlignmentType(str, Enum):
|
|
@@ -16,6 +17,28 @@ class AlignmentType(str, Enum):
|
|
|
16
17
|
CONTEXT_DATA = "context_data"
|
|
17
18
|
|
|
18
19
|
|
|
20
|
+
class SystemPrompt(BaseModel):
|
|
21
|
+
id: str
|
|
22
|
+
source_id: str
|
|
23
|
+
content: str
|
|
24
|
+
is_custom: bool
|
|
25
|
+
created_at: datetime | None = None
|
|
26
|
+
updated_at: datetime | None = None
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class SystemPromptRequest(BaseModel):
|
|
30
|
+
instructions: str | None = None
|
|
31
|
+
content: str | None = None
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class SystemPromptCreateRequest(BaseModel):
|
|
35
|
+
instructions: str
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class SystemPromptUpdateRequest(BaseModel):
|
|
39
|
+
content: str
|
|
40
|
+
|
|
41
|
+
|
|
19
42
|
class AlignmentRequest(BaseModel):
|
|
20
43
|
instructions: str = Field(
|
|
21
44
|
default=..., description="Task description/instructions for the alignment task"
|
|
@@ -27,6 +50,10 @@ class AlignmentRequest(BaseModel):
|
|
|
27
50
|
default=AlignmentType.PRINCIPLE,
|
|
28
51
|
description="Type of alignment task (principle, chain_of_thought, or context_data)",
|
|
29
52
|
)
|
|
53
|
+
vector_database_id: str | None = Field(
|
|
54
|
+
default=None,
|
|
55
|
+
description="Optional vector database id to use for context retrieval during context_data alignment",
|
|
56
|
+
)
|
|
30
57
|
|
|
31
58
|
|
|
32
59
|
class AlignmentEstimationRequest(BaseModel):
|
|
@@ -66,6 +93,15 @@ class AlignmentResponse(BaseModel):
|
|
|
66
93
|
progress: str | None = None
|
|
67
94
|
|
|
68
95
|
|
|
96
|
+
class AlignmentOutput(BaseModel):
|
|
97
|
+
id: str
|
|
98
|
+
filename: str
|
|
99
|
+
bytes: int | None = None
|
|
100
|
+
created_at: datetime | None = None
|
|
101
|
+
file_type: FileType | None = None
|
|
102
|
+
purpose: FilePurpose | None = None
|
|
103
|
+
|
|
104
|
+
|
|
69
105
|
class AlignmentList(BaseModel):
|
|
70
106
|
# object type
|
|
71
107
|
object: Literal["list"] | None = None
|
|
@@ -78,6 +78,7 @@ class ChatCompletionRequest(BaseModel):
|
|
|
78
78
|
messages: List[ChatCompletionMessage]
|
|
79
79
|
# model name
|
|
80
80
|
model: str
|
|
81
|
+
max_completion_tokens: int | None = None
|
|
81
82
|
# stopping criteria: max tokens to generate
|
|
82
83
|
max_tokens: int | None = None
|
|
83
84
|
# stopping criteria: list of strings to stop generation
|
seekrai/types/deployments.py
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
from typing import Any, Dict, List, Optional
|
|
4
|
+
|
|
5
|
+
from pydantic import Field
|
|
6
|
+
|
|
7
|
+
from seekrai.types.abstract import BaseModel
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class InfluentialFinetuningDataResponse(BaseModel):
|
|
11
|
+
results: List[Dict[str, Any]] = Field(
|
|
12
|
+
..., description="List of influential training data results"
|
|
13
|
+
)
|
|
14
|
+
version: str = Field(..., description="Version of the explainability service")
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class InfluentialFinetuningDataRequest(BaseModel):
|
|
18
|
+
question: str = Field(..., description="Question from user")
|
|
19
|
+
system_prompt: Optional[str] = Field(
|
|
20
|
+
None,
|
|
21
|
+
description="System prompt for the user's question.",
|
|
22
|
+
)
|
|
23
|
+
answer: Optional[str] = Field(
|
|
24
|
+
None,
|
|
25
|
+
description="Answer of the finetuned model to the question; if None, the answer is retrieved from the finetuned model",
|
|
26
|
+
)
|
seekrai/types/files.py
CHANGED
|
@@ -11,6 +11,7 @@ from seekrai.types.common import (
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
class FilePurpose(str, Enum):
|
|
14
|
+
ReinforcementFineTune = "reinforcement-fine-tune"
|
|
14
15
|
FineTune = "fine-tune"
|
|
15
16
|
PreTrain = "pre-train"
|
|
16
17
|
Alignment = "alignment"
|
|
@@ -94,7 +95,7 @@ class FileResponse(BaseModel):
|
|
|
94
95
|
# file byte size
|
|
95
96
|
bytes: int | None = None
|
|
96
97
|
created_by: str | None = None # TODO - fix this later
|
|
97
|
-
|
|
98
|
+
origin_file_id: str | None = None
|
|
98
99
|
deleted: bool | None = None
|
|
99
100
|
|
|
100
101
|
|
seekrai/types/finetune.py
CHANGED
|
@@ -2,7 +2,9 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
from datetime import datetime
|
|
4
4
|
from enum import Enum
|
|
5
|
-
from typing import List, Literal, Optional
|
|
5
|
+
from typing import Any, Dict, List, Literal, Optional
|
|
6
|
+
|
|
7
|
+
from pydantic import Field
|
|
6
8
|
|
|
7
9
|
from seekrai.types.abstract import BaseModel
|
|
8
10
|
from seekrai.types.common import (
|
|
@@ -24,6 +26,7 @@ class FinetuneJobStatus(str, Enum):
|
|
|
24
26
|
STATUS_CANCELLED = "cancelled"
|
|
25
27
|
STATUS_FAILED = "failed"
|
|
26
28
|
STATUS_COMPLETED = "completed"
|
|
29
|
+
STATUS_DELETED = "deleted"
|
|
27
30
|
|
|
28
31
|
|
|
29
32
|
class FinetuneEventLevels(str, Enum):
|
|
@@ -72,6 +75,12 @@ class FinetuneEventType(str, Enum):
|
|
|
72
75
|
WARNING = "WARNING"
|
|
73
76
|
|
|
74
77
|
|
|
78
|
+
class FineTuneType(str, Enum):
|
|
79
|
+
STANDARD = "STANDARD"
|
|
80
|
+
DPO = "DPO"
|
|
81
|
+
GRPO = "GRPO"
|
|
82
|
+
|
|
83
|
+
|
|
75
84
|
class FinetuneEvent(BaseModel):
|
|
76
85
|
"""
|
|
77
86
|
Fine-tune event type
|
|
@@ -86,6 +95,22 @@ class FinetuneEvent(BaseModel):
|
|
|
86
95
|
epoch: float | None = None
|
|
87
96
|
|
|
88
97
|
|
|
98
|
+
class LoRAConfig(BaseModel):
|
|
99
|
+
r: int = Field(8, gt=0, description="Rank of the update matrices.")
|
|
100
|
+
alpha: int = Field(32, gt=0, description="Scaling factor applied to LoRA updates.")
|
|
101
|
+
dropout: float = Field(
|
|
102
|
+
0.1,
|
|
103
|
+
ge=0.0,
|
|
104
|
+
le=1.0,
|
|
105
|
+
description="Fraction of LoRA neurons dropped during training.",
|
|
106
|
+
)
|
|
107
|
+
bias: Literal["none", "all", "lora_only"] = Field(
|
|
108
|
+
"none",
|
|
109
|
+
description="Bias terms to train; choose from 'none', 'all', or 'lora_only'.",
|
|
110
|
+
)
|
|
111
|
+
extras: Dict[str, Any] = Field(default_factory=dict)
|
|
112
|
+
|
|
113
|
+
|
|
89
114
|
class TrainingConfig(BaseModel):
|
|
90
115
|
# training file ID
|
|
91
116
|
training_files: List[str]
|
|
@@ -98,13 +123,19 @@ class TrainingConfig(BaseModel):
|
|
|
98
123
|
# number of checkpoints to save
|
|
99
124
|
n_checkpoints: int | None = None
|
|
100
125
|
# training batch size
|
|
101
|
-
batch_size: int
|
|
126
|
+
batch_size: int = Field(..., ge=1, le=1024)
|
|
102
127
|
# up to 40 character suffix for output model name
|
|
103
128
|
experiment_name: str | None = None
|
|
129
|
+
# sequence length
|
|
130
|
+
max_length: int = 2500
|
|
104
131
|
# # weights & biases api key
|
|
105
132
|
# wandb_key: str | None = None
|
|
106
133
|
# IFT by default
|
|
107
134
|
pre_train: bool = False
|
|
135
|
+
# fine-tune type
|
|
136
|
+
fine_tune_type: FineTuneType = FineTuneType.STANDARD
|
|
137
|
+
# LoRA config
|
|
138
|
+
lora_config: Optional[LoRAConfig] = None
|
|
108
139
|
|
|
109
140
|
|
|
110
141
|
class AcceleratorType(str, Enum):
|
|
@@ -119,6 +150,7 @@ class AcceleratorType(str, Enum):
|
|
|
119
150
|
class InfrastructureConfig(BaseModel):
|
|
120
151
|
accel_type: AcceleratorType
|
|
121
152
|
n_accel: int
|
|
153
|
+
n_node: int = 1
|
|
122
154
|
|
|
123
155
|
|
|
124
156
|
class FinetuneRequest(BaseModel):
|
|
@@ -138,6 +170,8 @@ class FinetuneResponse(BaseModel):
|
|
|
138
170
|
|
|
139
171
|
# job ID
|
|
140
172
|
id: str | None = None
|
|
173
|
+
# fine-tune type
|
|
174
|
+
fine_tune_type: FineTuneType = FineTuneType.STANDARD
|
|
141
175
|
# training file id
|
|
142
176
|
training_files: List[str] | None = None
|
|
143
177
|
# validation file id
|
|
@@ -146,6 +180,7 @@ class FinetuneResponse(BaseModel):
|
|
|
146
180
|
model: str | None = None
|
|
147
181
|
accel_type: AcceleratorType
|
|
148
182
|
n_accel: int
|
|
183
|
+
n_node: int | None = None
|
|
149
184
|
# number of epochs
|
|
150
185
|
n_epochs: int | None = None
|
|
151
186
|
# number of checkpoints to save
|
|
@@ -154,13 +189,10 @@ class FinetuneResponse(BaseModel):
|
|
|
154
189
|
batch_size: int | None = None
|
|
155
190
|
# training learning rate
|
|
156
191
|
learning_rate: float | None = None
|
|
192
|
+
# LoRA configuration returned when LoRA fine-tuning is enabled
|
|
193
|
+
lora_config: Optional[LoRAConfig] = None
|
|
157
194
|
# number of steps between evals
|
|
158
195
|
# eval_steps: int | None = None TODO
|
|
159
|
-
# is LoRA finetune boolean
|
|
160
|
-
# lora: bool | None = None
|
|
161
|
-
# lora_r: int | None = None
|
|
162
|
-
# lora_alpha: int | None = None
|
|
163
|
-
# lora_dropout: int | None = None
|
|
164
196
|
# created/updated datetime stamps
|
|
165
197
|
created_at: datetime | None = None
|
|
166
198
|
# updated_at: str | None = None
|
|
@@ -168,6 +200,7 @@ class FinetuneResponse(BaseModel):
|
|
|
168
200
|
experiment_name: str | None = None
|
|
169
201
|
# job status
|
|
170
202
|
status: FinetuneJobStatus | None = None
|
|
203
|
+
deleted_at: datetime | None = None
|
|
171
204
|
|
|
172
205
|
# list of fine-tune events
|
|
173
206
|
events: List[FinetuneEvent] | None = None
|
seekrai/types/vectordb.py
CHANGED
|
@@ -37,7 +37,12 @@ class VectorDatabaseIngestionRequest(BaseModel):
|
|
|
37
37
|
"""Request model for creating a new vector database ingestion job."""
|
|
38
38
|
|
|
39
39
|
file_ids: List[str] = Field(..., description="List of file IDs to ingest")
|
|
40
|
-
method: str = Field(
|
|
40
|
+
method: Optional[str] = Field(
|
|
41
|
+
default="accuracy-optimized", description="Method to use for ingestion"
|
|
42
|
+
)
|
|
43
|
+
chunking_method: Optional[str] = Field(
|
|
44
|
+
default="markdown", description="Configure how your content will be segmented"
|
|
45
|
+
)
|
|
41
46
|
token_count: int = Field(default=800, description="Token count for ingestion")
|
|
42
47
|
overlap_tokens: int = Field(default=100, description="Overlap tokens for ingestion")
|
|
43
48
|
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: seekrai
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.24
|
|
4
4
|
Summary: Python client for SeekrAI
|
|
5
|
+
Home-page: https://www.seekr.com
|
|
5
6
|
License: Apache-2.0
|
|
6
7
|
Author: SeekrFlow
|
|
7
8
|
Author-email: support@seekr.com
|
|
@@ -12,8 +13,6 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
13
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
17
16
|
Requires-Dist: click (>=8.1.7,<9.0.0)
|
|
18
17
|
Requires-Dist: eval-type-backport (>=0.1.3,<0.3.0)
|
|
19
18
|
Requires-Dist: filelock (>=3.13.1,<4.0.0)
|
|
@@ -27,8 +26,6 @@ Requires-Dist: requests (>=2.31.0,<3.0.0)
|
|
|
27
26
|
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
|
28
27
|
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
29
28
|
Requires-Dist: typer (>=0.9,<0.13)
|
|
30
|
-
Project-URL: Homepage, https://www.seekr.com/
|
|
31
|
-
Project-URL: Repository, https://gitlab.cb.ntent.com/ml/seekr-py
|
|
32
29
|
Description-Content-Type: text/markdown
|
|
33
30
|
|
|
34
31
|
The Seekr Python Library is the official Python client for SeekrFlow's API platform, providing a convenient way for interacting with the REST APIs and enables easy integrations with Python 3.9+ applications with easy to use synchronous and asynchronous clients.
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
seekrai/__init__.py,sha256=b3kBCTm-FoxCrNJ4hDieNBNN3Cj2xvevMUXEJQbntiE,900
|
|
2
|
+
seekrai/abstract/__init__.py,sha256=wNiOTW9TJpUgfCJCG-wAbhhWWH2PtoVpAuL3nxvQGps,56
|
|
3
|
+
seekrai/abstract/api_requestor.py,sha256=MfAEHsmjzjHM3Vr3BrNu2Oy_4YmDC5pHeYPFrtd9yAs,13582
|
|
4
|
+
seekrai/abstract/response_parsing.py,sha256=saREmIuJAPMkrzypR8zzFNAQwdF6wXn6VkXfFSQ_Ots,2931
|
|
5
|
+
seekrai/client.py,sha256=draieBBL6sp5VP5BRZiTudTIvVhhUHE_WhxP48CV5VU,6468
|
|
6
|
+
seekrai/constants.py,sha256=hoR2iF5te5Ydjt_lxIOSGID4vESIakG4F-3xAWdwxaU,1854
|
|
7
|
+
seekrai/error.py,sha256=rAYL8qEd8INwYMMKvhS-HKeC3QkWL4Wq-zfazFU-zBg,4861
|
|
8
|
+
seekrai/filemanager.py,sha256=bO2OvjZ9Cx5r2vr3Ocpd_0qVc3owRDT2LCU4Zmp2uDY,15489
|
|
9
|
+
seekrai/resources/__init__.py,sha256=wEZO13NvzzRAZ67oYUaXWxfp-PhECRL-EpltmJubS5w,1759
|
|
10
|
+
seekrai/resources/agents/__init__.py,sha256=8zQIr2LEJyuaVwbU6WmItGu0F8VWTa7eYrquyHUY1QY,700
|
|
11
|
+
seekrai/resources/agents/agent_inference.py,sha256=KIxdEV9qMA7tscrVGp4-Fe1H_iBqdY7Oh7rkpPDNfjo,10568
|
|
12
|
+
seekrai/resources/agents/agent_observability.py,sha256=VC_iyJnTwZ6PdQPp0T9XzipXOruh8P7h_UCwLjbY1Sk,4253
|
|
13
|
+
seekrai/resources/agents/agents.py,sha256=frmLHvrqeUxnMkE9Xn4w1ugChM14S9ik4MwWyklPMWI,9607
|
|
14
|
+
seekrai/resources/agents/python_functions.py,sha256=VL1JSsPP5nN1m8I0Ihe3AYlb8TMRg2n9-FWsWeNZH2s,9277
|
|
15
|
+
seekrai/resources/agents/threads.py,sha256=BwZ2_6wlezsb12PQjEw1fgdJh5S83SPgD6qZQoGvyIM,14544
|
|
16
|
+
seekrai/resources/alignment.py,sha256=htpwu41NPOb_3aAM6fCilVBcEXlzIYF_req-Cf6OrpI,19627
|
|
17
|
+
seekrai/resources/chat/__init__.py,sha256=KmtPupgECtEN80NyvcnSmieTAFXhwmVxhMHP0qhspA4,618
|
|
18
|
+
seekrai/resources/chat/completions.py,sha256=-nFk5aL1ejZ9WUi_ksDHqCnEnT2CjPX-RaigT3N35gA,12317
|
|
19
|
+
seekrai/resources/completions.py,sha256=JhTN_lW2mblfHHONFmPC7QZei3wo5vx6GliMs9FkbOY,8452
|
|
20
|
+
seekrai/resources/deployments.py,sha256=DY7IN7QgqDduCHGNuHENSVwrE5PXFL88jWgh8SES7Qk,5970
|
|
21
|
+
seekrai/resources/embeddings.py,sha256=7G-VisYrT9J35-hcKB8cXhs8BSi93IfveQKfVSC7diA,2585
|
|
22
|
+
seekrai/resources/explainability.py,sha256=Z0JllD5ruvrMu7fbgVlKuUOHkMIO1x9FWbFRao2TLm8,3546
|
|
23
|
+
seekrai/resources/files.py,sha256=bEn4jfYWfsI2OqKRGCUpnefIN-udNnafItgT2A7m-e4,15329
|
|
24
|
+
seekrai/resources/finetune.py,sha256=BFtNE0nq_jQ6B3RLPCI2ytPGrkxebO2TKsq3J4hAo3E,12898
|
|
25
|
+
seekrai/resources/images.py,sha256=VjZiU2cxq2uNrJzm-EwNpOW3rBIgFyRHss8_DF1OuVE,4799
|
|
26
|
+
seekrai/resources/ingestion.py,sha256=RPnUWbHJCXRwVT4BUhmdE5nH4xD8JQBiR2zYrMJsywY,4956
|
|
27
|
+
seekrai/resources/models.py,sha256=q_lW0yzumasl4xTMg5jEDcyaycWe8Gm9C_ibRHWVxZM,2246
|
|
28
|
+
seekrai/resources/projects.py,sha256=Nmuh0_BwWoAO89r-p0ZEM8p4NHIH1EUeP83ivRoW5hw,3682
|
|
29
|
+
seekrai/resources/resource_base.py,sha256=rFIHFeqKPiAEbMYcMiIGHIym7qxwmh-EGsWiZcMDHdk,224
|
|
30
|
+
seekrai/resources/vectordb.py,sha256=1uUsyCUJdVAVUnua9RJWqf-j0HDD74EPeERUBjqVvmg,15797
|
|
31
|
+
seekrai/seekrflow_response.py,sha256=5RFEQzamDy7sTSDkxSsZQThZ3biNmeCPeHWdrFId5Go,1320
|
|
32
|
+
seekrai/types/__init__.py,sha256=042qPXVpS5DZe8ZWV67cBu1PD2JB3IPi6_1O2G0MOQE,4909
|
|
33
|
+
seekrai/types/abstract.py,sha256=TqWFQV_6bPblywfCH-r8FCkXWvPkc9KlJ4QVgyrnaMc,642
|
|
34
|
+
seekrai/types/agents/__init__.py,sha256=STRQlgnapxFT5egAP_i3yZSh9gauGmJBHTzdvH8tbdk,2395
|
|
35
|
+
seekrai/types/agents/agent.py,sha256=85D4GeHF-bYYnPirJSi1MbFg_2uFE2fSEmAHV9LxZfQ,1132
|
|
36
|
+
seekrai/types/agents/observability.py,sha256=kOpBrNsrOzSbf-AsRBWAxRB9FqO0063CshUr-r2hHBE,963
|
|
37
|
+
seekrai/types/agents/python_functions.py,sha256=31Jm46gryHsgNsC7nlivuyY0TSko58y2YVxsu_7bEAg,653
|
|
38
|
+
seekrai/types/agents/runs.py,sha256=JgvasNM_eesGbwnqeAbRzPNvbzLAG1_N2IU7M7OHD1w,4933
|
|
39
|
+
seekrai/types/agents/threads.py,sha256=TinCMKv1bi5LzboDyCx1XI4Zzd8UzUZos4VOrTNhmEc,6835
|
|
40
|
+
seekrai/types/agents/tools/__init__.py,sha256=4MmlL13JLhWgMUlL3TKfegiA-IXGG06YellZTSTVFC8,537
|
|
41
|
+
seekrai/types/agents/tools/env_model_config.py,sha256=9POx2DPwfSXgoaziJv7QvKeMrhMsYD1exnanSRK48vw,177
|
|
42
|
+
seekrai/types/agents/tools/schemas/__init__.py,sha256=_HQoqgBk4T1IvlD0Yt3REz0_x_oVFTgITTd7H2ZJXws,562
|
|
43
|
+
seekrai/types/agents/tools/schemas/file_search.py,sha256=7reLq-S3jMnHlGgP0ihZrU2S4Mcaizoz4IXm3SqCj4A,304
|
|
44
|
+
seekrai/types/agents/tools/schemas/file_search_env.py,sha256=3iS69R8DpLPTJY2WhiCbOMV47-vXvMjBA7csgfIxKeU,582
|
|
45
|
+
seekrai/types/agents/tools/schemas/run_python.py,sha256=CMw9C0T9UBWfHSW6mRhNDIIe_uGfxjgRkPIbqGlQxjo,297
|
|
46
|
+
seekrai/types/agents/tools/schemas/run_python_env.py,sha256=q2lhxWvmOEqdj3c1DktL7CJrKqXp8s1wZuQvh7eReb4,220
|
|
47
|
+
seekrai/types/agents/tools/schemas/web_search.py,sha256=HrcVIC-SQGlBIXvJ0MxXYVQe6JnlgacleViXIo5OrGw,297
|
|
48
|
+
seekrai/types/agents/tools/schemas/web_search_env.py,sha256=aHaricIcXaWz9N4G_gEipstANPbJPf41F9VZC5LwPog,182
|
|
49
|
+
seekrai/types/agents/tools/tool.py,sha256=rX-SoN-XgweiHQIKRhNxBWK4ClNjEiXv-YaLdejpgmc,397
|
|
50
|
+
seekrai/types/agents/tools/tool_types.py,sha256=1tF_kE6Z_zzuZpOAK1HrHsHkXFPEoK0PdYv-pbTLfkY,360
|
|
51
|
+
seekrai/types/alignment.py,sha256=nWcc4kQLs40-T0_HC3MnGkLd-StwBvwCXQrjUVJ5dEI,2973
|
|
52
|
+
seekrai/types/chat_completions.py,sha256=Z7H1MkMgb4O0O5LDMKotQqhjGVCYk5eBeZ8n--RJpf8,3736
|
|
53
|
+
seekrai/types/common.py,sha256=YI1pE-i_lDLU2o6FjoINdIhPXsV9lUl2MeAg2aRtT-M,2062
|
|
54
|
+
seekrai/types/completions.py,sha256=lm9AFdZR3Xg5AHPkV-qETHikkwMJmkHrLGr5GG-YR-M,2171
|
|
55
|
+
seekrai/types/deployments.py,sha256=a0zew1DuB9vPQXcBT2R4Tdn_8z5qleh6V6i4T4xyYZo,1798
|
|
56
|
+
seekrai/types/embeddings.py,sha256=OANoLNOs0aceS8NppVvvcNYQbF7-pAOAmcr30pw64OU,749
|
|
57
|
+
seekrai/types/error.py,sha256=uTKISs9aRC4_6zwirtNkanxepN8KY-SqCq0kNbfZylQ,370
|
|
58
|
+
seekrai/types/explainability.py,sha256=Ih-8hCm5r22EMMtr83cDy8vePo7_Ik7UdUcXhsj5Zm0,835
|
|
59
|
+
seekrai/types/files.py,sha256=EMlkjQQdQlBfYefJcf8eyKqFddafjTcOPCP9k7ZXDh0,2760
|
|
60
|
+
seekrai/types/finetune.py,sha256=ZhmLTw9rLIqJUib0CObKXJxdb_nYxv94IQrrvF9vFXQ,7204
|
|
61
|
+
seekrai/types/images.py,sha256=Fusj8OhVYFsT8kz636lRGGivLbPXo_ZNgakKwmzJi3U,914
|
|
62
|
+
seekrai/types/ingestion.py,sha256=uUdKOR4xqSfAXWQOR1UOltSlOnuyAwKVA1Q2a6Yslk8,919
|
|
63
|
+
seekrai/types/models.py,sha256=9Z0nvLdlAfpF8mNRW5-IqBdDHoE-3qQ5przmIDJgwLo,1345
|
|
64
|
+
seekrai/types/projects.py,sha256=JFgpZdovia8Orcnhp6QkIEAXzyPCfKT_bUiwjxUaHHQ,670
|
|
65
|
+
seekrai/types/vectordb.py,sha256=Fw3ZrEvWU5OHzXNIUXtD24JVG7pCULfudX_WDOazJnk,2454
|
|
66
|
+
seekrai/utils/__init__.py,sha256=dfbiYEc47EBVRkq6C4O9y6tTGuPuV3LbV3__v01Mbds,658
|
|
67
|
+
seekrai/utils/_log.py,sha256=Cayw5B394H2WGVTXPXS2AN8znQdxsgrLqADXgqmokvU,1649
|
|
68
|
+
seekrai/utils/api_helpers.py,sha256=0Y8BblNIr9h_R12zdmhkxgTlxgoRkbq84QNi4nNWGu8,2385
|
|
69
|
+
seekrai/utils/files.py,sha256=7ixn_hgV-6pEhYqLyOp-EN0o8c1CzUwJzX9n3PQ5oqo,7164
|
|
70
|
+
seekrai/utils/tools.py,sha256=jgJTL-dOIouDbEJLdQpQfpXhqaz_poQYS52adyUtBjo,1781
|
|
71
|
+
seekrai/version.py,sha256=q6iGQVFor8zXiPP5F-3vy9TndOxKv5JXbaNJ2kdOQws,125
|
|
72
|
+
seekrai-0.5.24.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
73
|
+
seekrai-0.5.24.dist-info/METADATA,sha256=c8xRXd2zpQouHVnpTEXs-an-vibbjsZmxELTBxU-1ZA,4601
|
|
74
|
+
seekrai-0.5.24.dist-info/WHEEL,sha256=WGfLGfLX43Ei_YORXSnT54hxFygu34kMpcQdmgmEwCQ,88
|
|
75
|
+
seekrai-0.5.24.dist-info/entry_points.txt,sha256=N49yOEGi1sK7Xr13F_rkkcOxQ88suyiMoOmRhUHTZ_U,48
|
|
76
|
+
seekrai-0.5.24.dist-info/RECORD,,
|
seekrai-0.5.2.dist-info/RECORD
DELETED
|
@@ -1,67 +0,0 @@
|
|
|
1
|
-
seekrai/__init__.py,sha256=b3kBCTm-FoxCrNJ4hDieNBNN3Cj2xvevMUXEJQbntiE,900
|
|
2
|
-
seekrai/abstract/__init__.py,sha256=wNiOTW9TJpUgfCJCG-wAbhhWWH2PtoVpAuL3nxvQGps,56
|
|
3
|
-
seekrai/abstract/api_requestor.py,sha256=MfAEHsmjzjHM3Vr3BrNu2Oy_4YmDC5pHeYPFrtd9yAs,13582
|
|
4
|
-
seekrai/abstract/response_parsing.py,sha256=WOn3whR5E6_mExmMpx3p9JlgjTjEIhcxrsFlI2I5J6c,2877
|
|
5
|
-
seekrai/client.py,sha256=kDzhUj7xVi47-h2YtNcX3JGDCIM1xAUYKZaXDm8fovA,5984
|
|
6
|
-
seekrai/constants.py,sha256=hoR2iF5te5Ydjt_lxIOSGID4vESIakG4F-3xAWdwxaU,1854
|
|
7
|
-
seekrai/error.py,sha256=rAYL8qEd8INwYMMKvhS-HKeC3QkWL4Wq-zfazFU-zBg,4861
|
|
8
|
-
seekrai/filemanager.py,sha256=bO2OvjZ9Cx5r2vr3Ocpd_0qVc3owRDT2LCU4Zmp2uDY,15489
|
|
9
|
-
seekrai/resources/__init__.py,sha256=GRM2kLOr-NaqrIcRnPQN15MP5tAs7vLI_7_1CYC6rt8,1371
|
|
10
|
-
seekrai/resources/agents/__init__.py,sha256=qPdo3vMZUaGZPdZCNYL0hjtX-T6yAlnpE_zc5otkjak,373
|
|
11
|
-
seekrai/resources/agents/agent_inference.py,sha256=rYALRvGtu9ed8-cG7tSNbyrsg0sn6pN9X6KMNJkSC08,8990
|
|
12
|
-
seekrai/resources/agents/agents.py,sha256=Cs184v2jYQRlk5MmsAH_hRI93D7qS6mJpuCLGIxH3as,7996
|
|
13
|
-
seekrai/resources/agents/threads.py,sha256=BwZ2_6wlezsb12PQjEw1fgdJh5S83SPgD6qZQoGvyIM,14544
|
|
14
|
-
seekrai/resources/alignment.py,sha256=IOKlKK2I9_NhS9pwcrsd9-5OO7lVT8Uw0y_wuGHOnyA,5839
|
|
15
|
-
seekrai/resources/chat/__init__.py,sha256=KmtPupgECtEN80NyvcnSmieTAFXhwmVxhMHP0qhspA4,618
|
|
16
|
-
seekrai/resources/chat/completions.py,sha256=9KP1eiQ7uHuf8A4BPOKOKwgnsn6kkp2swT6Q5g_4xoI,11656
|
|
17
|
-
seekrai/resources/completions.py,sha256=JhTN_lW2mblfHHONFmPC7QZei3wo5vx6GliMs9FkbOY,8452
|
|
18
|
-
seekrai/resources/deployments.py,sha256=DY7IN7QgqDduCHGNuHENSVwrE5PXFL88jWgh8SES7Qk,5970
|
|
19
|
-
seekrai/resources/embeddings.py,sha256=UMVb6LIJn8KFACMajVRL3SY88bbZl1aQ2Sx5MdT1sQQ,2593
|
|
20
|
-
seekrai/resources/files.py,sha256=bEn4jfYWfsI2OqKRGCUpnefIN-udNnafItgT2A7m-e4,15329
|
|
21
|
-
seekrai/resources/finetune.py,sha256=Aw8lU9TohZdJGOstex12gg2t-RDppOponnWg203Bn-Q,11304
|
|
22
|
-
seekrai/resources/images.py,sha256=VjZiU2cxq2uNrJzm-EwNpOW3rBIgFyRHss8_DF1OuVE,4799
|
|
23
|
-
seekrai/resources/ingestion.py,sha256=tSJhX6kMzSdNxhHGBdzUKg9gsMP_aOFBz4EBoIFlGUM,4854
|
|
24
|
-
seekrai/resources/models.py,sha256=pj7dmtQDEFwkkeMBdK1oLjq7-fdk7LBB1SMyWENS9ic,2418
|
|
25
|
-
seekrai/resources/projects.py,sha256=Nmuh0_BwWoAO89r-p0ZEM8p4NHIH1EUeP83ivRoW5hw,3682
|
|
26
|
-
seekrai/resources/resource_base.py,sha256=rFIHFeqKPiAEbMYcMiIGHIym7qxwmh-EGsWiZcMDHdk,224
|
|
27
|
-
seekrai/resources/vectordb.py,sha256=RRULyuldM4A0RlveBNZWFrav7l405wm89ua3k3Bqkgc,14527
|
|
28
|
-
seekrai/seekrflow_response.py,sha256=5RFEQzamDy7sTSDkxSsZQThZ3biNmeCPeHWdrFId5Go,1320
|
|
29
|
-
seekrai/types/__init__.py,sha256=JJwKx63vKZi6tUBe9rlg1qKdmOXPk7SRhx63ZmOZtZ0,4382
|
|
30
|
-
seekrai/types/abstract.py,sha256=TqWFQV_6bPblywfCH-r8FCkXWvPkc9KlJ4QVgyrnaMc,642
|
|
31
|
-
seekrai/types/agents/__init__.py,sha256=0Yu67fNbYvGYIZJXBRtw1nIADcm7jfX4QnCsrfsRG7g,1942
|
|
32
|
-
seekrai/types/agents/agent.py,sha256=95GTP2X4f3vVsRZ8rCxfsJz9yVgltGTtybXg99ZNRGw,849
|
|
33
|
-
seekrai/types/agents/runs.py,sha256=KqNYjNN0m-da29jM1N-iF_Bb_q--ar5eyfJnZGV3sbc,3131
|
|
34
|
-
seekrai/types/agents/threads.py,sha256=TinCMKv1bi5LzboDyCx1XI4Zzd8UzUZos4VOrTNhmEc,6835
|
|
35
|
-
seekrai/types/agents/tools/__init__.py,sha256=-rdY30tqMSSapMKPFOYa-6crd6tVOUvHCzOW1UXxO0U,442
|
|
36
|
-
seekrai/types/agents/tools/env_model_config.py,sha256=9POx2DPwfSXgoaziJv7QvKeMrhMsYD1exnanSRK48vw,177
|
|
37
|
-
seekrai/types/agents/tools/schemas/__init__.py,sha256=sWNKRzmnWoTv3cJ5k0q0tVuWeOlRhDMEvVeClF1r4p8,202
|
|
38
|
-
seekrai/types/agents/tools/schemas/file_search.py,sha256=sBH3nHgp2aIlbDsv6B3Er8LFzq6VZSXXzgN_toGVY28,289
|
|
39
|
-
seekrai/types/agents/tools/schemas/file_search_env.py,sha256=T53Yd3sWoNftmxU3GnQRDBMZpzJwU0-N3vpq9LdcIXc,583
|
|
40
|
-
seekrai/types/agents/tools/tool.py,sha256=VVreXuKz1LX7L1En2wTYnrCt6Za2KK2pco0RH9PxgX8,235
|
|
41
|
-
seekrai/types/agents/tools/tool_env_types.py,sha256=qQDRbRBU4VGLb6uLIq_G4o-cdgZ5DBwBCa4m1Gw7OYg,151
|
|
42
|
-
seekrai/types/agents/tools/tool_types.py,sha256=Auciez5JSSGjczfG38UAuuCeyRKs-ikP3bh2VAEUPFo,242
|
|
43
|
-
seekrai/types/alignment.py,sha256=t1jS_lylUF7zbnf91ceXc3v6HzPmegUCkc3_eypTsSg,2109
|
|
44
|
-
seekrai/types/chat_completions.py,sha256=xRTHBbDJDbz0HgW042WX3csQDolhjEuO81w0rzFSeBU,3691
|
|
45
|
-
seekrai/types/common.py,sha256=YI1pE-i_lDLU2o6FjoINdIhPXsV9lUl2MeAg2aRtT-M,2062
|
|
46
|
-
seekrai/types/completions.py,sha256=lm9AFdZR3Xg5AHPkV-qETHikkwMJmkHrLGr5GG-YR-M,2171
|
|
47
|
-
seekrai/types/deployments.py,sha256=GdZPDaQgzmk9W1aXxZr9CDxqJRNv7NP0pNvqRV3E4xM,1760
|
|
48
|
-
seekrai/types/embeddings.py,sha256=OANoLNOs0aceS8NppVvvcNYQbF7-pAOAmcr30pw64OU,749
|
|
49
|
-
seekrai/types/error.py,sha256=uTKISs9aRC4_6zwirtNkanxepN8KY-SqCq0kNbfZylQ,370
|
|
50
|
-
seekrai/types/files.py,sha256=yjJYT8twY-cNh9AY9qlcN_moTeCfR0tJSSCQsOVB02Y,2708
|
|
51
|
-
seekrai/types/finetune.py,sha256=e1TexW2PdNcRAGdHeNmRSWGKE2K9NLhbdcce0XYvWio,6162
|
|
52
|
-
seekrai/types/images.py,sha256=Fusj8OhVYFsT8kz636lRGGivLbPXo_ZNgakKwmzJi3U,914
|
|
53
|
-
seekrai/types/ingestion.py,sha256=uUdKOR4xqSfAXWQOR1UOltSlOnuyAwKVA1Q2a6Yslk8,919
|
|
54
|
-
seekrai/types/models.py,sha256=9Z0nvLdlAfpF8mNRW5-IqBdDHoE-3qQ5przmIDJgwLo,1345
|
|
55
|
-
seekrai/types/projects.py,sha256=JFgpZdovia8Orcnhp6QkIEAXzyPCfKT_bUiwjxUaHHQ,670
|
|
56
|
-
seekrai/types/vectordb.py,sha256=zWtB9OEfTpFf0hABko8WqhyZ0SH3os6ZRWXxkvg88-Q,2268
|
|
57
|
-
seekrai/utils/__init__.py,sha256=dfbiYEc47EBVRkq6C4O9y6tTGuPuV3LbV3__v01Mbds,658
|
|
58
|
-
seekrai/utils/_log.py,sha256=Cayw5B394H2WGVTXPXS2AN8znQdxsgrLqADXgqmokvU,1649
|
|
59
|
-
seekrai/utils/api_helpers.py,sha256=0Y8BblNIr9h_R12zdmhkxgTlxgoRkbq84QNi4nNWGu8,2385
|
|
60
|
-
seekrai/utils/files.py,sha256=7ixn_hgV-6pEhYqLyOp-EN0o8c1CzUwJzX9n3PQ5oqo,7164
|
|
61
|
-
seekrai/utils/tools.py,sha256=jgJTL-dOIouDbEJLdQpQfpXhqaz_poQYS52adyUtBjo,1781
|
|
62
|
-
seekrai/version.py,sha256=q6iGQVFor8zXiPP5F-3vy9TndOxKv5JXbaNJ2kdOQws,125
|
|
63
|
-
seekrai-0.5.2.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
64
|
-
seekrai-0.5.2.dist-info/METADATA,sha256=_uCmgAvoXVaul5oDZ-kKQ2JTHxMAoBdTvCXldbGeNXk,4780
|
|
65
|
-
seekrai-0.5.2.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
66
|
-
seekrai-0.5.2.dist-info/entry_points.txt,sha256=N49yOEGi1sK7Xr13F_rkkcOxQ88suyiMoOmRhUHTZ_U,48
|
|
67
|
-
seekrai-0.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|