airtrain 0.1.39__py3-none-any.whl → 0.1.41__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.
- airtrain/__init__.py +1 -1
- airtrain/integrations/__init__.py +10 -1
- airtrain/integrations/anthropic/__init__.py +12 -0
- airtrain/integrations/anthropic/models_config.py +100 -0
- airtrain/integrations/fireworks/__init__.py +10 -0
- airtrain/integrations/fireworks/credentials.py +10 -2
- airtrain/integrations/fireworks/list_models.py +128 -0
- airtrain/integrations/fireworks/models.py +112 -0
- airtrain/integrations/fireworks/skills.py +62 -11
- airtrain/integrations/fireworks/structured_completion_skills.py +10 -4
- airtrain/integrations/fireworks/structured_requests_skills.py +108 -31
- airtrain/integrations/openai/__init__.py +6 -0
- airtrain/integrations/openai/models_config.py +118 -13
- airtrain/integrations/openai/skills.py +109 -1
- airtrain/integrations/together/__init__.py +14 -1
- airtrain/integrations/together/list_models.py +77 -0
- airtrain/integrations/together/models.py +42 -3
- {airtrain-0.1.39.dist-info → airtrain-0.1.41.dist-info}/METADATA +1 -1
- {airtrain-0.1.39.dist-info → airtrain-0.1.41.dist-info}/RECORD +22 -19
- {airtrain-0.1.39.dist-info → airtrain-0.1.41.dist-info}/WHEEL +1 -1
- {airtrain-0.1.39.dist-info → airtrain-0.1.41.dist-info}/entry_points.txt +0 -0
- {airtrain-0.1.39.dist-info → airtrain-0.1.41.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,5 @@
|
|
1
|
-
from typing import List, Optional
|
1
|
+
from typing import List, Optional, Dict, Any
|
2
2
|
from pydantic import BaseModel, Field, validator
|
3
|
-
from pathlib import Path
|
4
3
|
|
5
4
|
|
6
5
|
class TogetherAIImageInput(BaseModel):
|
@@ -30,7 +29,7 @@ class TogetherAIImageInput(BaseModel):
|
|
30
29
|
if width <= 0 or height <= 0:
|
31
30
|
raise ValueError
|
32
31
|
return v
|
33
|
-
except:
|
32
|
+
except ValueError:
|
34
33
|
raise ValueError("Size must be in format WIDTHxHEIGHT (e.g., 1024x1024)")
|
35
34
|
|
36
35
|
|
@@ -54,3 +53,43 @@ class TogetherAIImageOutput(BaseModel):
|
|
54
53
|
usage: dict = Field(
|
55
54
|
default_factory=dict, description="Usage statistics and billing information"
|
56
55
|
)
|
56
|
+
|
57
|
+
|
58
|
+
class TogetherModel(BaseModel):
|
59
|
+
"""Schema for Together AI model"""
|
60
|
+
|
61
|
+
id: str = Field(..., description="Model ID")
|
62
|
+
name: Optional[str] = Field(None, description="Model name")
|
63
|
+
object: Optional[str] = Field(None, description="Object type")
|
64
|
+
created: Optional[int] = Field(None, description="Creation timestamp")
|
65
|
+
owned_by: Optional[str] = Field(None, description="Model owner")
|
66
|
+
root: Optional[str] = Field(None, description="Root model identifier")
|
67
|
+
parent: Optional[str] = Field(None, description="Parent model identifier")
|
68
|
+
permission: Optional[List[Dict[str, Any]]] = Field(
|
69
|
+
None, description="Permission details"
|
70
|
+
)
|
71
|
+
metadata: Optional[Dict[str, Any]] = Field(
|
72
|
+
None, description="Additional metadata for the model"
|
73
|
+
)
|
74
|
+
description: Optional[str] = Field(None, description="Model description")
|
75
|
+
pricing: Optional[Dict[str, Any]] = Field(None, description="Pricing information")
|
76
|
+
context_length: Optional[int] = Field(
|
77
|
+
None, description="Maximum context length supported by the model"
|
78
|
+
)
|
79
|
+
capabilities: Optional[List[str]] = Field(
|
80
|
+
None, description="Model capabilities"
|
81
|
+
)
|
82
|
+
|
83
|
+
|
84
|
+
class TogetherListModelsInput(BaseModel):
|
85
|
+
"""Schema for listing Together AI models input"""
|
86
|
+
pass
|
87
|
+
|
88
|
+
|
89
|
+
class TogetherListModelsOutput(BaseModel):
|
90
|
+
"""Schema for listing Together AI models output"""
|
91
|
+
|
92
|
+
data: List[TogetherModel] = Field(
|
93
|
+
..., description="List of Together AI models"
|
94
|
+
)
|
95
|
+
object: Optional[str] = Field(None, description="Object type")
|
@@ -1,4 +1,4 @@
|
|
1
|
-
airtrain/__init__.py,sha256=
|
1
|
+
airtrain/__init__.py,sha256=KrDT-Fn1iruBhdnav_vK-wkcO6-ZfwcOCDukwElOxEU,2099
|
2
2
|
airtrain/__main__.py,sha256=EU8ffFmCdC1G-UcHHt0Oo3lB1PGqfC6kwzH39CnYSwU,72
|
3
3
|
airtrain/builder/__init__.py,sha256=D33sr0k_WAe6FAJkk8rUaivEzFaeVqLXkQgyFWEhfPU,110
|
4
4
|
airtrain/builder/agent_builder.py,sha256=3XnGUAcK_6lWoUDtL0TanliQZuh7u0unhNbnrz1z2-I,5018
|
@@ -13,9 +13,10 @@ airtrain/core/__init__.py,sha256=9h7iKwTzZocCPc9bU6j8bA02BokteWIOcO1uaqGMcrk,254
|
|
13
13
|
airtrain/core/credentials.py,sha256=PgQotrQc46J5djidKnkK1znUv3fyNkUFDO-m2Kn_Gzo,4006
|
14
14
|
airtrain/core/schemas.py,sha256=MMXrDviC4gRea_QaPpbjgO--B_UKxnD7YrxqZOLJZZU,7003
|
15
15
|
airtrain/core/skills.py,sha256=LljalzeSHK5eQPTAOEAYc5D8Qn1kVSfiz9WgziTD5UM,4688
|
16
|
-
airtrain/integrations/__init__.py,sha256
|
17
|
-
airtrain/integrations/anthropic/__init__.py,sha256=
|
16
|
+
airtrain/integrations/__init__.py,sha256=rk9QFl0Dd7Qp4rULhi_u4smwsJwk69Kg_-fv0GQ43iw,1782
|
17
|
+
airtrain/integrations/anthropic/__init__.py,sha256=F4kB5fuj7nYgTVcgzeHGc91LT96FZfsCJVBVCnTRh-k,541
|
18
18
|
airtrain/integrations/anthropic/credentials.py,sha256=hlTSw9HX66kYNaeQUtn0JjdZQBMNkzzFOJOoLOOzvcY,1246
|
19
|
+
airtrain/integrations/anthropic/models_config.py,sha256=TZt31hLcT-9YK-NxqiarMyOwvUWMgXAzAcPfSwzDSiQ,3347
|
19
20
|
airtrain/integrations/anthropic/skills.py,sha256=WV-9254H2VqUAq_7Zr1xG5IhejeC_gQSqyH0hwW1_tY,5870
|
20
21
|
airtrain/integrations/aws/__init__.py,sha256=3x7v2NxpAfI-U-YgwQeH5PtsmUrNLPMfLyUGFLiBjbs,155
|
21
22
|
airtrain/integrations/aws/credentials.py,sha256=nN-daKAl7qOb_VdRpsThG8gN5GeSUkx-ji5E_gF_vYw,1444
|
@@ -23,15 +24,16 @@ airtrain/integrations/aws/skills.py,sha256=TQiMXeXRRcJ14fe8Xi7Uk20iS6_INbcznuLGt
|
|
23
24
|
airtrain/integrations/cerebras/__init__.py,sha256=zAD-qV38OzHhMCz1z-NvjjqcYEhURbm8RWTOKHNqbew,174
|
24
25
|
airtrain/integrations/cerebras/credentials.py,sha256=KDEH4r8FGT68L9p34MLZWK65wq_a703pqIF3ODaSbts,694
|
25
26
|
airtrain/integrations/cerebras/skills.py,sha256=hmqcnF-nkFk5YJVf8f-TiKBfb8kYCfnC30W67VZ7CKU,4922
|
26
|
-
airtrain/integrations/fireworks/__init__.py,sha256=
|
27
|
+
airtrain/integrations/fireworks/__init__.py,sha256=GstUg0rYC-7Pg0DVbDXwL5eO1hp3WCSfroWazbGpfi0,545
|
27
28
|
airtrain/integrations/fireworks/completion_skills.py,sha256=G657xWd7izLOxXq7RmqdupBF4DHqXQgXuhQ-MW7mtqc,5613
|
28
29
|
airtrain/integrations/fireworks/conversation_manager.py,sha256=m6VEHijqpYEYawkKhuHtb8RQxw4kxGWFWdbSK6zGuro,3704
|
29
|
-
airtrain/integrations/fireworks/credentials.py,sha256=
|
30
|
-
airtrain/integrations/fireworks/
|
30
|
+
airtrain/integrations/fireworks/credentials.py,sha256=eeV9y_4pTe8LZX02I7kfA_YNY2D7MSbFl7JEZVn22zQ,864
|
31
|
+
airtrain/integrations/fireworks/list_models.py,sha256=o4fP0K3qstBopO7va2LysLp4_KUf5Iz_YROrYkaNtVs,4686
|
32
|
+
airtrain/integrations/fireworks/models.py,sha256=yo4xtweSi4qQftg04r4naRddx3KjU9Jluzqf5C7V9f4,4626
|
31
33
|
airtrain/integrations/fireworks/requests_skills.py,sha256=c84Vy_4EcBrwJfp3jqizzlcja_LsEtvWh59qiaIjukg,8233
|
32
|
-
airtrain/integrations/fireworks/skills.py,sha256=
|
33
|
-
airtrain/integrations/fireworks/structured_completion_skills.py,sha256
|
34
|
-
airtrain/integrations/fireworks/structured_requests_skills.py,sha256=
|
34
|
+
airtrain/integrations/fireworks/skills.py,sha256=o9OY69cC10P8BtBBYRYLCyR_GwxmNlF6YhnrXiNS53o,7154
|
35
|
+
airtrain/integrations/fireworks/structured_completion_skills.py,sha256=-AJTaOFC8vkFiEjHW24VL8ymcNSVbhZp6xb4enkL95U,6620
|
36
|
+
airtrain/integrations/fireworks/structured_requests_skills.py,sha256=FgUdWb6_GI2ZBWhK2wp-WqKZUkwCkKNBBjYcRkHtjog,11850
|
35
37
|
airtrain/integrations/fireworks/structured_skills.py,sha256=BZaLqSOTC11QdZ4kDORS4JnwF_YXBAa-IiwQ5dJiHXw,3895
|
36
38
|
airtrain/integrations/google/__init__.py,sha256=ElwgcXfbg_gGMm6zbkMXCQPFKZUb-yTJk986o19A7Cs,214
|
37
39
|
airtrain/integrations/google/credentials.py,sha256=KSvWNqW8Mjr4MkysRvUqlrOSGdShNIe5u2OPO6vRrWY,2047
|
@@ -42,29 +44,30 @@ airtrain/integrations/groq/skills.py,sha256=qFyxC_2xZYnByAPo5p2aHbrqhdHYCoIdvDRA
|
|
42
44
|
airtrain/integrations/ollama/__init__.py,sha256=zMHBsGzViVrvxAeJmfq6r-ZfSE6Dy5QcKLhe4d5fEcM,164
|
43
45
|
airtrain/integrations/ollama/credentials.py,sha256=D7O4kUAb_VHs5s1ncUN9Ezhu5PvLfgj3RifAkB9sEZk,940
|
44
46
|
airtrain/integrations/ollama/skills.py,sha256=M_Un8D5VJ5XtPEq9IClzqV3jCPBoFTSm2ve6EO8W2JU,1556
|
45
|
-
airtrain/integrations/openai/__init__.py,sha256=
|
47
|
+
airtrain/integrations/openai/__init__.py,sha256=w5V7lxvrKtrrjyqGoppEKg9ORKKQ2cxaLOpgCZdm_H8,541
|
46
48
|
airtrain/integrations/openai/chinese_assistant.py,sha256=MMhv4NBOoEQ0O22ZZtP255rd5ajHC9l6FPWIjpqxBOA,1581
|
47
49
|
airtrain/integrations/openai/credentials.py,sha256=NfRyp1QgEtgm8cxt2-BOLq-6d0X-Pcm80NnfHM8p0FY,1470
|
48
|
-
airtrain/integrations/openai/models_config.py,sha256=
|
49
|
-
airtrain/integrations/openai/skills.py,sha256=
|
50
|
+
airtrain/integrations/openai/models_config.py,sha256=W9mu_z9tCC4ZUKHSJ6Hk4X09TRZLqEhT7TtRY5JEk5g,8007
|
51
|
+
airtrain/integrations/openai/skills.py,sha256=1dvRJYrnU2hOmGRlkHBtyR6P8D7aIwHZfUKmjlReWrQ,12821
|
50
52
|
airtrain/integrations/sambanova/__init__.py,sha256=dp_263iOckM_J9pOEvyqpf3FrejD6-_x33r0edMCTe0,179
|
51
53
|
airtrain/integrations/sambanova/credentials.py,sha256=JyN8sbMCoXuXAjim46aI3LTicBijoemS7Ao0rn4yBJU,824
|
52
54
|
airtrain/integrations/sambanova/skills.py,sha256=SZ_GAimMiOCILiNkzyhNflyRR6bdC5r0Tnog19K8geU,4997
|
53
|
-
airtrain/integrations/together/__init__.py,sha256=
|
55
|
+
airtrain/integrations/together/__init__.py,sha256=P6AH0kWgYmXGOupbLqBXCsY-KV1tcCV9UtvmJ6BGqFE,463
|
54
56
|
airtrain/integrations/together/audio_models_config.py,sha256=GtqfmKR1vJ5x4B3kScvEO3x4exvzwNP78vcGVTk_fBE,1004
|
55
57
|
airtrain/integrations/together/credentials.py,sha256=cYNhyIwgsxm8LfiFfT-omBvgV3mUP6SZeRSukyzzDlI,747
|
56
58
|
airtrain/integrations/together/embedding_models_config.py,sha256=F0ISAXCG_Pcnf-ojkvZwIXacXD8LaU8hQmGHCFzmlds,2927
|
57
59
|
airtrain/integrations/together/image_models_config.py,sha256=JlCozrphI9zE4uYpGfj4DCWSN6GZGyr84Tb1HmjNQ28,2455
|
58
60
|
airtrain/integrations/together/image_skill.py,sha256=wQ8wSzfL-QHpM_esYGLNXf8ciOPPsz-QJw6zSrxZT68,5214
|
59
|
-
airtrain/integrations/together/
|
61
|
+
airtrain/integrations/together/list_models.py,sha256=BFq_w3Rz9WP2gKIaQNNIyUJUaYkz-FCSEbNMClccrsY,2580
|
62
|
+
airtrain/integrations/together/models.py,sha256=q5KsouOK7IvyzGZ7nhSjTpZw-CcLfPghJr6o_UU9uMo,3652
|
60
63
|
airtrain/integrations/together/models_config.py,sha256=XMKp0Oq1nWWnMMdNAZxkFXmJaURwWrwLE18kFXsMsRw,8829
|
61
64
|
airtrain/integrations/together/rerank_models_config.py,sha256=coCg0IOG2tU4L2uc2uPtPdoBwGjSc_zQwxENwdDuwHE,1188
|
62
65
|
airtrain/integrations/together/rerank_skill.py,sha256=gjH24hLWCweWKPyyfKZMG3K_g9gWzm80WgiJNjkA9eg,1894
|
63
66
|
airtrain/integrations/together/schemas.py,sha256=pBMrbX67oxPCr-sg4K8_Xqu1DWbaC4uLCloVSascROg,1210
|
64
67
|
airtrain/integrations/together/skills.py,sha256=8DwkexMJu1Gm6QmNDfNasYStQ31QsXBbFP99zR-YCf0,7598
|
65
68
|
airtrain/integrations/together/vision_models_config.py,sha256=m28HwYDk2Kup_J-a1FtynIa2ZVcbl37kltfoHnK8zxs,1544
|
66
|
-
airtrain-0.1.
|
67
|
-
airtrain-0.1.
|
68
|
-
airtrain-0.1.
|
69
|
-
airtrain-0.1.
|
70
|
-
airtrain-0.1.
|
69
|
+
airtrain-0.1.41.dist-info/METADATA,sha256=mOYF47bkfI4rQJFBkcmnHZ47u1Pqh6e_S8-4Ps3KmGg,5375
|
70
|
+
airtrain-0.1.41.dist-info/WHEEL,sha256=beeZ86-EfXScwlR_HKu4SllMC9wUEj_8Z_4FJ3egI2w,91
|
71
|
+
airtrain-0.1.41.dist-info/entry_points.txt,sha256=rrJ36IUsyq6n1dSfTWXqVAgpQLPRWDfCqwd6_3B-G0U,52
|
72
|
+
airtrain-0.1.41.dist-info/top_level.txt,sha256=cFWW1vY6VMCb3AGVdz6jBDpZ65xxBRSqlsPyySxTkxY,9
|
73
|
+
airtrain-0.1.41.dist-info/RECORD,,
|
File without changes
|
File without changes
|