simile 0.3.3__tar.gz → 0.3.4__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.

Potentially problematic release.


This version of simile might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simile
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Package for interfacing with Simile AI agents for simulation
5
5
  Author-email: Simile AI <cqz@simile.ai>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "simile"
7
- version = "0.3.3"
7
+ version = "0.3.4"
8
8
  authors = [
9
9
  { name="Simile AI", email="cqz@simile.ai" },
10
10
  ]
@@ -0,0 +1,47 @@
1
+ from .client import Simile
2
+ from .auth_client import SimileAuth
3
+ from .models import (
4
+ Population,
5
+ Agent,
6
+ DataItem,
7
+ PopulationInfo,
8
+ CreatePopulationPayload,
9
+ CreateAgentPayload,
10
+ CreateDataItemPayload,
11
+ UpdateDataItemPayload,
12
+ DeletionResponse,
13
+ OpenGenerationRequest,
14
+ OpenGenerationResponse,
15
+ ClosedGenerationRequest,
16
+ ClosedGenerationResponse,
17
+ )
18
+ from .exceptions import (
19
+ SimileAPIError,
20
+ SimileAuthenticationError,
21
+ SimileNotFoundError,
22
+ SimileBadRequestError
23
+ )
24
+
25
+ __all__ = [
26
+ "Simile",
27
+ "SimileAuth",
28
+ "Population",
29
+ "PopulationInfo",
30
+ "Agent",
31
+ "DataItem",
32
+ "CreatePopulationPayload",
33
+ "CreateAgentPayload",
34
+ "CreateDataItemPayload",
35
+ "UpdateDataItemPayload",
36
+ "DeletionResponse",
37
+ "OpenGenerationRequest",
38
+ "OpenGenerationResponse",
39
+ "ClosedGenerationRequest",
40
+ "ClosedGenerationResponse",
41
+ "SimileAPIError",
42
+ "SimileAuthenticationError",
43
+ "SimileNotFoundError",
44
+ "SimileBadRequestError",
45
+ ]
46
+
47
+ __version__ = "0.2.15"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simile
3
- Version: 0.3.3
3
+ Version: 0.3.4
4
4
  Summary: Package for interfacing with Simile AI agents for simulation
5
5
  Author-email: Simile AI <cqz@simile.ai>
6
6
  License: MIT
@@ -1,30 +0,0 @@
1
- from .client import Simile
2
- from .auth_client import SimileAuth
3
- from .models import (
4
- Population, Agent, DataItem,
5
- CreatePopulationPayload, CreateAgentPayload, CreateDataItemPayload, UpdateDataItemPayload,
6
- DeletionResponse,
7
- OpenGenerationRequest,
8
- OpenGenerationResponse,
9
- ClosedGenerationRequest,
10
- ClosedGenerationResponse
11
- )
12
- from .exceptions import (
13
- SimileAPIError,
14
- SimileAuthenticationError,
15
- SimileNotFoundError,
16
- SimileBadRequestError
17
- )
18
-
19
- __all__ = [
20
- "Simile",
21
- "SimileAuth",
22
- "Population", "Agent", "DataItem",
23
- "CreatePopulationPayload", "CreateAgentPayload", "CreateDataItemPayload", "UpdateDataItemPayload",
24
- "DeletionResponse",
25
- "OpenGenerationRequest", "OpenGenerationResponse",
26
- "ClosedGenerationRequest", "ClosedGenerationResponse",
27
- "SimileAPIError", "SimileAuthenticationError", "SimileNotFoundError", "SimileBadRequestError"
28
- ]
29
-
30
- __version__ = "0.2.15"
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