arbor-ai 0.1.2__py3-none-any.whl → 0.1.3__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.
- arbor/server/api/models/schemas.py +18 -0
- {arbor_ai-0.1.2.dist-info → arbor_ai-0.1.3.dist-info}/METADATA +1 -1
- {arbor_ai-0.1.2.dist-info → arbor_ai-0.1.3.dist-info}/RECORD +5 -5
- arbor/py.typed +0 -1
- {arbor_ai-0.1.2.dist-info → arbor_ai-0.1.3.dist-info}/WHEEL +0 -0
- {arbor_ai-0.1.2.dist-info → arbor_ai-0.1.3.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
from pydantic import BaseModel
|
2
|
+
|
3
|
+
class FileResponse(BaseModel):
|
4
|
+
id: str
|
5
|
+
object: str = "file"
|
6
|
+
bytes: int
|
7
|
+
created_at: int
|
8
|
+
filename: str
|
9
|
+
purpose: str
|
10
|
+
|
11
|
+
class FineTuneRequest(BaseModel):
|
12
|
+
model_name: str
|
13
|
+
training_file: str # id of uploaded jsonl file
|
14
|
+
|
15
|
+
class JobStatusResponse(BaseModel):
|
16
|
+
job_id: str
|
17
|
+
status: str
|
18
|
+
details: str = ""
|
@@ -2,9 +2,9 @@ arbor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
arbor/cli.py,sha256=6fT5JjpXSwhpJSQNE4pnLOY04ryHPwJBAOet3hyho8k,383
|
3
3
|
arbor/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
arbor/client/api.py,sha256=WFaNtwCNWXRAHHG1Jfyl7LvTP6jiEyQOLZn2Z8Yjt5k,40
|
5
|
-
arbor/py.typed,sha256=z-Pkyz3s2OGz9guRV9o0O088Bt3b-7lf0vEEnzWvuKo,48
|
6
5
|
arbor/server/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
7
6
|
arbor/server/api/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
7
|
+
arbor/server/api/models/schemas.py,sha256=-_NOnUuEbiO8uLDwEpByYV6NAMasOmFUJXxG0eXA_D0,367
|
8
8
|
arbor/server/api/routes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
arbor/server/api/routes/files.py,sha256=QrPY9-886NXnXjGRlT-pl5kWbnwfogCrdmv6RufJpVg,466
|
10
10
|
arbor/server/api/routes/jobs.py,sha256=ibL0tQA2Apqa91vycv3NPT0ydhkba4vnPoclw-bVKXs,510
|
@@ -20,7 +20,7 @@ arbor/server/services/job_manager.py,sha256=Zx3d0h31YH9bQ4yQr3FUXUGEHd-KUiTekZ0n
|
|
20
20
|
arbor/server/services/training_manager.py,sha256=SNumrzM1B-V1HBucUHmxnmc4rmhSCHVgPPc5nNPRC4Q,10682
|
21
21
|
arbor/server/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
arbor/server/utils/helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
|
-
arbor_ai-0.1.
|
24
|
-
arbor_ai-0.1.
|
25
|
-
arbor_ai-0.1.
|
26
|
-
arbor_ai-0.1.
|
23
|
+
arbor_ai-0.1.3.dist-info/METADATA,sha256=PJbOddt69fyZXJggzpaSUb5XfUt0ouPrQQFIAaeOasE,1272
|
24
|
+
arbor_ai-0.1.3.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
25
|
+
arbor_ai-0.1.3.dist-info/entry_points.txt,sha256=AaLg05CZSQeP2oGlCH_AnmZPz-zzLlVtpXToI4cM3kY,39
|
26
|
+
arbor_ai-0.1.3.dist-info/RECORD,,
|
arbor/py.typed
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
# This file can be empty, it just needs to exist
|
File without changes
|
File without changes
|