appkit-assistant 0.7.1__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/model_manager.py +133 -0
- appkit_assistant/backend/models.py +103 -0
- appkit_assistant/backend/processor.py +46 -0
- appkit_assistant/backend/processors/ai_models.py +109 -0
- appkit_assistant/backend/processors/knowledgeai_processor.py +275 -0
- appkit_assistant/backend/processors/lorem_ipsum_processor.py +123 -0
- appkit_assistant/backend/processors/openai_base.py +73 -0
- appkit_assistant/backend/processors/openai_chat_completion_processor.py +117 -0
- appkit_assistant/backend/processors/openai_responses_processor.py +508 -0
- appkit_assistant/backend/processors/perplexity_processor.py +118 -0
- appkit_assistant/backend/repositories.py +96 -0
- appkit_assistant/backend/system_prompt.py +56 -0
- appkit_assistant/components/__init__.py +38 -0
- appkit_assistant/components/composer.py +154 -0
- appkit_assistant/components/composer_key_handler.py +38 -0
- appkit_assistant/components/mcp_server_dialogs.py +344 -0
- appkit_assistant/components/mcp_server_table.py +76 -0
- appkit_assistant/components/message.py +299 -0
- appkit_assistant/components/thread.py +252 -0
- appkit_assistant/components/threadlist.py +134 -0
- appkit_assistant/components/tools_modal.py +97 -0
- appkit_assistant/configuration.py +10 -0
- appkit_assistant/state/mcp_server_state.py +222 -0
- appkit_assistant/state/thread_state.py +874 -0
- appkit_assistant-0.7.1.dist-info/METADATA +8 -0
- appkit_assistant-0.7.1.dist-info/RECORD +27 -0
- appkit_assistant-0.7.1.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
appkit_assistant/configuration.py,sha256=u05fg5qmPyHhhSSOxhwwFFeiTPqYpe3oINlcv6iY0cI,296
|
|
2
|
+
appkit_assistant/backend/model_manager.py,sha256=LrRqjCfT4Fo1-DCblcn40nPbyT0TjZuFiVcNEstpMJ0,4365
|
|
3
|
+
appkit_assistant/backend/models.py,sha256=Taz5vwfwmiMGd9PgVrMVchKeDdkZ8LM5WI1gWkihqvA,2602
|
|
4
|
+
appkit_assistant/backend/processor.py,sha256=dhBg3pYXdmpj9JtAJc-d83SeUA1NsICj1C_YI0M2QYE,1289
|
|
5
|
+
appkit_assistant/backend/repositories.py,sha256=TGos0I0UpuBv0dT2PHMviLaZ4MP9-UnKbKE6tzVyias,3163
|
|
6
|
+
appkit_assistant/backend/system_prompt.py,sha256=PmqGToI0beRaQB-36ZjTolWC4fne40TjptIft0LkCrQ,2395
|
|
7
|
+
appkit_assistant/backend/processors/ai_models.py,sha256=i-0eDCmGIgv6SLSINkTo9NecBUI5ZIc9izgAyLAFWRQ,2098
|
|
8
|
+
appkit_assistant/backend/processors/knowledgeai_processor.py,sha256=0i5E71y7zwBc5mW_8rKuTjeNk_GLv2kfXPPwKNBaazA,9513
|
|
9
|
+
appkit_assistant/backend/processors/lorem_ipsum_processor.py,sha256=j-MZhzibrtabzbGB2Pf4Xcdlr1TlTYWNRdE22LsDp9Q,4635
|
|
10
|
+
appkit_assistant/backend/processors/openai_base.py,sha256=f8X7yMWRBiRsS8vDrbEBY-oR1luzJMn8F7LcAlGUKko,2272
|
|
11
|
+
appkit_assistant/backend/processors/openai_chat_completion_processor.py,sha256=nTxouoXDU6VcQr8UhA2KiMNt60KvIwM8cH9Z8lo4dXY,4218
|
|
12
|
+
appkit_assistant/backend/processors/openai_responses_processor.py,sha256=9EjgjpFZjQDcRq9yJLnj9UZP7D_RZlKUph2E5avSdAQ,18591
|
|
13
|
+
appkit_assistant/backend/processors/perplexity_processor.py,sha256=VjcEgBkgupfwAZtBgvFtoUmExILlUL-tEuH4uLjEcwc,3213
|
|
14
|
+
appkit_assistant/components/__init__.py,sha256=fgXWhM_i-fOUwWhASgmyuPWfV2Oh-tBkysAtTAxm0C8,877
|
|
15
|
+
appkit_assistant/components/composer.py,sha256=F4VPxWp4P6fvTW4rQ7S-YWn0eje5c3jGsWrpC1aewss,3885
|
|
16
|
+
appkit_assistant/components/composer_key_handler.py,sha256=KyZYyhxzFR8DH_7F_DrvTFNT6v5kG6JihlGTmCv2wv0,1028
|
|
17
|
+
appkit_assistant/components/mcp_server_dialogs.py,sha256=iuzg9vfTiqTWgNiC38zEzfPPmRgCKosmSjgiBnE0tO8,11397
|
|
18
|
+
appkit_assistant/components/mcp_server_table.py,sha256=1dziN7hDDvE8Y3XcdIs0wUPv1H64kP9gRAEjgH9Yvzo,2323
|
|
19
|
+
appkit_assistant/components/message.py,sha256=EyYM33Z2RmxKotDsHdj6qtHlA2ofV74MYiFNJ-pgRFE,9624
|
|
20
|
+
appkit_assistant/components/thread.py,sha256=TcK1wl4Zr7HnZDqyLjKfESqmMyzOMzBq5Gr-0CT9Kco,7997
|
|
21
|
+
appkit_assistant/components/threadlist.py,sha256=NKB9GshghdSlUY2hVIRdhX9nxd6mxJeII4bTfpfNZUU,4182
|
|
22
|
+
appkit_assistant/components/tools_modal.py,sha256=gThgOzYa_r74IHWEKxmmT85c2MiHLIhOFtiV9IT_r3E,3355
|
|
23
|
+
appkit_assistant/state/mcp_server_state.py,sha256=L5r3Bd_OzFh_kgWH81cKVBWhE3Ys6m8TsJs2vadCWhU,7945
|
|
24
|
+
appkit_assistant/state/thread_state.py,sha256=h8jmE0hZmSWJ5-D4EqxBTO0ydBSNa9IxUTa5tfYdkMk,32618
|
|
25
|
+
appkit_assistant-0.7.1.dist-info/METADATA,sha256=DEU2ggCeYmNqoN86EanGXjq_nILnQ-RWDVzPCj8Qg34,202
|
|
26
|
+
appkit_assistant-0.7.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
27
|
+
appkit_assistant-0.7.1.dist-info/RECORD,,
|