cat-stack 0.1.0__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.
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,94 @@
1
+ # openai list of models
2
+ openai_models = [
3
+ "gpt-5",
4
+ "gpt-5-mini",
5
+ "gpt-5-nano",
6
+ "gpt-4o",
7
+ "gpt-4o-mini",
8
+ "gpt-4.1",
9
+ "gpt-4.1-mini",
10
+ "gpt-4.1-nano",
11
+ "gpt-3.5-turbo",
12
+ "text-davinci-003",
13
+ "text-davinci-002"
14
+ ]
15
+
16
+ # anthropic list of models
17
+ anthropic_models = [
18
+ "claude-opus-4-20250514-v1:0",
19
+ "claude-opus-4-1-20250805-v1:0",
20
+ "claude-sonnet-4-5-20250929-v1:0",
21
+ "claude-sonnet-4-20250514-v1:0",
22
+ "claude-3-7-sonnet-20250219-v1:0",
23
+ "claude-3-5-sonnet-20240620-v1:0",
24
+ "claude-3-5-haiku-20241022-v1:0",
25
+ "claude-3-opus-20240229-v1:0",
26
+ "claude-3-sonnet-20240229-v1:0",
27
+ "claude-haiku-4-5-20251001-v1:0",
28
+ "claude-sonnet-4-5-20250929",
29
+ "claude-haiku-4-5-20251001",
30
+ "claude-opus-4-1-20250805"
31
+ ]
32
+
33
+ # google list of models
34
+
35
+ google_models = [
36
+ "gemini-2.5-flash",
37
+ "gemini-2.5-flash-lite",
38
+ "gemini-2.5-pro",
39
+ "gemini-2.0-flash",
40
+ "gemini-2.0-flash-lite",
41
+ "gemini-2.0-pro",
42
+ "gemini-2.5",
43
+ "gemini-2.0",
44
+ "gemini-2.5-flash-preview",
45
+ "gemini-2.5-pro-preview"
46
+ ]
47
+
48
+ # perplexity list of models
49
+
50
+ perplexity_models = [
51
+ "sonar",
52
+ "sonar-pro",
53
+ "sonar-reasoning",
54
+ "sonar-reasoning-pro",
55
+ "sonar-deep-research",
56
+ "r1-1776"
57
+ ]
58
+
59
+ # mistral list of models
60
+
61
+ mistral_models = [
62
+ "mistral-large-latest",
63
+ "mistral-medium-2505",
64
+ "mistral-large-2411",
65
+ "codestral-2501",
66
+ "pixtral-large-2411",
67
+ "mistral-small-2407",
68
+ "mistral-embed",
69
+ "codestral-embed",
70
+ "mistral-moderation-2411",
71
+ "ministral-3b-2410",
72
+ "ministral-8b-2410"
73
+ ]
74
+
75
+ # meta list of models
76
+ # list can be found here: https://huggingface.co/collections/meta-llama/llama-4-67f0c30d9fe03840bc9d0164
77
+ meta_llama_models = [
78
+ "meta/llama-3.1-8b-instruct",
79
+ "meta/llama-3.1-70b-instruct",
80
+ "meta/llama-3.1-405b-instruct",
81
+ "meta/llama-3.2-11b-vision-instruct",
82
+ "meta/llama-3.2-90b-vision-instruct",
83
+ "meta/llama-3.3-70b-instruct",
84
+ "meta/llama-4-scout-17b-16e-instruct",
85
+ "meta/llama-4-maverick-17b-128e-instruct",
86
+ "llama-4-maverick-17b-128e-instruct-maas",
87
+ "llama-4-scout-17b-16e-instruct-maas",
88
+ "llama-3.3-70b-instruct-maas",
89
+ "llama-3.2-90b-vision-instruct-maas",
90
+ "llama-3.1-405b-instruct-maas",
91
+ "llama-3.1-70b-instruct-maas",
92
+ "llama-3.1-8b-instruct-maas",
93
+
94
+ ]