appkit-assistant 0.7.1__py3-none-any.whl → 0.7.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.
- appkit_assistant/backend/models.py +2 -0
- appkit_assistant/backend/processors/ai_models.py +23 -0
- appkit_assistant/backend/processors/perplexity_processor.py +3 -0
- {appkit_assistant-0.7.1.dist-info → appkit_assistant-0.7.3.dist-info}/METADATA +1 -1
- {appkit_assistant-0.7.1.dist-info → appkit_assistant-0.7.3.dist-info}/RECORD +6 -6
- {appkit_assistant-0.7.1.dist-info → appkit_assistant-0.7.3.dist-info}/WHEEL +0 -0
|
@@ -16,6 +16,7 @@ GEMINI_2_5_FLASH: Final = AIModel(
|
|
|
16
16
|
icon="googlegemini",
|
|
17
17
|
model="gemini-2-5-flash",
|
|
18
18
|
)
|
|
19
|
+
|
|
19
20
|
LLAMA_3_2_VISION: Final = AIModel(
|
|
20
21
|
id="llama32_vision_90b",
|
|
21
22
|
text="Llama 3.2 Vision 90B (OnPrem)",
|
|
@@ -76,6 +77,17 @@ GPT_5: Final = AIModel(
|
|
|
76
77
|
temperature=1,
|
|
77
78
|
)
|
|
78
79
|
|
|
80
|
+
GPT_5_1: Final = AIModel(
|
|
81
|
+
id="gpt-5.1",
|
|
82
|
+
text="GPT 5.1",
|
|
83
|
+
icon="openai",
|
|
84
|
+
model="gpt-5.1",
|
|
85
|
+
stream=True,
|
|
86
|
+
supports_attachments=True,
|
|
87
|
+
supports_tools=True,
|
|
88
|
+
temperature=1,
|
|
89
|
+
)
|
|
90
|
+
|
|
79
91
|
GPT_5_CHAT: Final = AIModel(
|
|
80
92
|
id="gpt-5-chat",
|
|
81
93
|
text="GPT 5 Chat",
|
|
@@ -97,6 +109,17 @@ GPT_5_MINI: Final = AIModel(
|
|
|
97
109
|
temperature=1,
|
|
98
110
|
)
|
|
99
111
|
|
|
112
|
+
GPT_5_1_MINI: Final = AIModel(
|
|
113
|
+
id="gpt-5.1-mini",
|
|
114
|
+
text="GPT 5.1 Mini",
|
|
115
|
+
icon="openai",
|
|
116
|
+
model="gpt-5.1-mini",
|
|
117
|
+
stream=True,
|
|
118
|
+
supports_attachments=True,
|
|
119
|
+
supports_tools=True,
|
|
120
|
+
temperature=1,
|
|
121
|
+
)
|
|
122
|
+
|
|
100
123
|
GPT_5_NANO: Final = AIModel(
|
|
101
124
|
id="gpt-5-nano",
|
|
102
125
|
text="GPT 5 Nano",
|
|
@@ -41,6 +41,7 @@ SONAR_PRO = PerplexityAIModel(
|
|
|
41
41
|
icon="perplexity",
|
|
42
42
|
model="sonar-pro",
|
|
43
43
|
stream=True,
|
|
44
|
+
keywords=["sonar", "perplexity"],
|
|
44
45
|
)
|
|
45
46
|
|
|
46
47
|
SONAR_DEEP_RESEARCH = PerplexityAIModel(
|
|
@@ -50,6 +51,7 @@ SONAR_DEEP_RESEARCH = PerplexityAIModel(
|
|
|
50
51
|
model="sonar-deep-research",
|
|
51
52
|
search_context_size=ContextSize.HIGH,
|
|
52
53
|
stream=True,
|
|
54
|
+
keywords=["reasoning", "deep", "research", "perplexity"],
|
|
53
55
|
)
|
|
54
56
|
|
|
55
57
|
SONAR_REASONING = PerplexityAIModel(
|
|
@@ -59,6 +61,7 @@ SONAR_REASONING = PerplexityAIModel(
|
|
|
59
61
|
model="sonar-reasoning",
|
|
60
62
|
search_context_size=ContextSize.HIGH,
|
|
61
63
|
stream=True,
|
|
64
|
+
keywords=["reasoning", "perplexity"],
|
|
62
65
|
)
|
|
63
66
|
|
|
64
67
|
ALL_MODELS = {
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
appkit_assistant/configuration.py,sha256=u05fg5qmPyHhhSSOxhwwFFeiTPqYpe3oINlcv6iY0cI,296
|
|
2
2
|
appkit_assistant/backend/model_manager.py,sha256=LrRqjCfT4Fo1-DCblcn40nPbyT0TjZuFiVcNEstpMJ0,4365
|
|
3
|
-
appkit_assistant/backend/models.py,sha256
|
|
3
|
+
appkit_assistant/backend/models.py,sha256=-FAbpbnaWcte0CiiFwpG5FLSe0bjT-dka4crQBUmkX0,2658
|
|
4
4
|
appkit_assistant/backend/processor.py,sha256=dhBg3pYXdmpj9JtAJc-d83SeUA1NsICj1C_YI0M2QYE,1289
|
|
5
5
|
appkit_assistant/backend/repositories.py,sha256=TGos0I0UpuBv0dT2PHMviLaZ4MP9-UnKbKE6tzVyias,3163
|
|
6
6
|
appkit_assistant/backend/system_prompt.py,sha256=PmqGToI0beRaQB-36ZjTolWC4fne40TjptIft0LkCrQ,2395
|
|
7
|
-
appkit_assistant/backend/processors/ai_models.py,sha256=
|
|
7
|
+
appkit_assistant/backend/processors/ai_models.py,sha256=KG6nyeb22BAI_MxPPFY9uBts-B1BvDFF6C2BsF_RFk8,2517
|
|
8
8
|
appkit_assistant/backend/processors/knowledgeai_processor.py,sha256=0i5E71y7zwBc5mW_8rKuTjeNk_GLv2kfXPPwKNBaazA,9513
|
|
9
9
|
appkit_assistant/backend/processors/lorem_ipsum_processor.py,sha256=j-MZhzibrtabzbGB2Pf4Xcdlr1TlTYWNRdE22LsDp9Q,4635
|
|
10
10
|
appkit_assistant/backend/processors/openai_base.py,sha256=f8X7yMWRBiRsS8vDrbEBY-oR1luzJMn8F7LcAlGUKko,2272
|
|
11
11
|
appkit_assistant/backend/processors/openai_chat_completion_processor.py,sha256=nTxouoXDU6VcQr8UhA2KiMNt60KvIwM8cH9Z8lo4dXY,4218
|
|
12
12
|
appkit_assistant/backend/processors/openai_responses_processor.py,sha256=9EjgjpFZjQDcRq9yJLnj9UZP7D_RZlKUph2E5avSdAQ,18591
|
|
13
|
-
appkit_assistant/backend/processors/perplexity_processor.py,sha256=
|
|
13
|
+
appkit_assistant/backend/processors/perplexity_processor.py,sha256=weHukv78MSCF_uSCKGSMpNYHsET9OB8IhpvUiMfPQ8A,3355
|
|
14
14
|
appkit_assistant/components/__init__.py,sha256=fgXWhM_i-fOUwWhASgmyuPWfV2Oh-tBkysAtTAxm0C8,877
|
|
15
15
|
appkit_assistant/components/composer.py,sha256=F4VPxWp4P6fvTW4rQ7S-YWn0eje5c3jGsWrpC1aewss,3885
|
|
16
16
|
appkit_assistant/components/composer_key_handler.py,sha256=KyZYyhxzFR8DH_7F_DrvTFNT6v5kG6JihlGTmCv2wv0,1028
|
|
@@ -22,6 +22,6 @@ appkit_assistant/components/threadlist.py,sha256=NKB9GshghdSlUY2hVIRdhX9nxd6mxJe
|
|
|
22
22
|
appkit_assistant/components/tools_modal.py,sha256=gThgOzYa_r74IHWEKxmmT85c2MiHLIhOFtiV9IT_r3E,3355
|
|
23
23
|
appkit_assistant/state/mcp_server_state.py,sha256=L5r3Bd_OzFh_kgWH81cKVBWhE3Ys6m8TsJs2vadCWhU,7945
|
|
24
24
|
appkit_assistant/state/thread_state.py,sha256=h8jmE0hZmSWJ5-D4EqxBTO0ydBSNa9IxUTa5tfYdkMk,32618
|
|
25
|
-
appkit_assistant-0.7.
|
|
26
|
-
appkit_assistant-0.7.
|
|
27
|
-
appkit_assistant-0.7.
|
|
25
|
+
appkit_assistant-0.7.3.dist-info/METADATA,sha256=tGfeVHTUrVIoJds2L5-4ZXOD-nPF_bbbDGTjq00Ecmo,202
|
|
26
|
+
appkit_assistant-0.7.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
27
|
+
appkit_assistant-0.7.3.dist-info/RECORD,,
|
|
File without changes
|