appkit-assistant 0.7.4__tar.gz → 0.7.5__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.
Files changed (30) hide show
  1. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/PKG-INFO +17 -2
  2. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/README.md +1 -1
  3. appkit_assistant-0.7.5/pyproject.toml +49 -0
  4. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/mcp_server_dialogs.py +1 -4
  5. appkit_assistant-0.7.4/pyproject.toml +0 -24
  6. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/.gitignore +0 -0
  7. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/docs/assistant.png +0 -0
  8. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/model_manager.py +0 -0
  9. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/models.py +0 -0
  10. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processor.py +0 -0
  11. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/ai_models.py +0 -0
  12. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/knowledgeai_processor.py +0 -0
  13. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/lorem_ipsum_processor.py +0 -0
  14. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/openai_base.py +0 -0
  15. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/openai_chat_completion_processor.py +0 -0
  16. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/openai_responses_processor.py +0 -0
  17. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/processors/perplexity_processor.py +0 -0
  18. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/repositories.py +0 -0
  19. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/backend/system_prompt.py +0 -0
  20. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/__init__.py +0 -0
  21. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/composer.py +0 -0
  22. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/composer_key_handler.py +0 -0
  23. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/mcp_server_table.py +0 -0
  24. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/message.py +0 -0
  25. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/thread.py +0 -0
  26. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/threadlist.py +0 -0
  27. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/components/tools_modal.py +0 -0
  28. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/configuration.py +0 -0
  29. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/state/mcp_server_state.py +0 -0
  30. {appkit_assistant-0.7.4 → appkit_assistant-0.7.5}/src/appkit_assistant/state/thread_state.py +0 -0
@@ -1,11 +1,26 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: appkit-assistant
3
- Version: 0.7.4
3
+ Version: 0.7.5
4
4
  Summary: Add your description here
5
+ Project-URL: Homepage, https://github.com/jenreh/appkit
6
+ Project-URL: Documentation, https://github.com/jenreh/appkit/tree/main/docs
7
+ Project-URL: Repository, https://github.com/jenreh/appkit
8
+ Project-URL: Issues, https://github.com/jenreh/appkit/issues
5
9
  Author: Jens Rehpöhler
10
+ License: MIT
11
+ Keywords: components,mantine,reflex,ui,web
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Topic :: Software Development :: User Interfaces
6
18
  Requires-Python: >=3.13
7
19
  Requires-Dist: appkit-commons
20
+ Requires-Dist: appkit-mantine
21
+ Requires-Dist: appkit-ui
8
22
  Requires-Dist: openai>=2.3.0
23
+ Requires-Dist: reflex>=0.8.20
9
24
  Description-Content-Type: text/markdown
10
25
 
11
26
  # appkit-assistant
@@ -17,7 +32,7 @@ Description-Content-Type: text/markdown
17
32
 
18
33
  appkit-assistant provides a complete conversational AI interface built on Reflex, featuring OpenAI and Perplexity integrations, Model Context Protocol (MCP) server management, and secure credential handling. It includes both backend processing services and ready-to-use UI components for building AI-powered applications.
19
34
 
20
- ![Assistant](./docs/assistant.png)
35
+ ![Assistant](https://raw.githubusercontent.com/jenreh/appkit/refs/heads/main/components/appkit-assistant/docs/assistant.png)
21
36
 
22
37
  ---
23
38
 
@@ -7,7 +7,7 @@
7
7
 
8
8
  appkit-assistant provides a complete conversational AI interface built on Reflex, featuring OpenAI and Perplexity integrations, Model Context Protocol (MCP) server management, and secure credential handling. It includes both backend processing services and ready-to-use UI components for building AI-powered applications.
9
9
 
10
- ![Assistant](./docs/assistant.png)
10
+ ![Assistant](https://raw.githubusercontent.com/jenreh/appkit/refs/heads/main/components/appkit-assistant/docs/assistant.png)
11
11
 
12
12
  ---
13
13
 
@@ -0,0 +1,49 @@
1
+ [project]
2
+ name = "appkit-assistant"
3
+ version = "0.7.5"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ authors = [{ name = "Jens Rehpöhler" }]
7
+ requires-python = ">=3.13"
8
+ license = { text = "MIT" }
9
+ keywords = [
10
+ "reflex",
11
+ "mantine",
12
+ "ui",
13
+ "components",
14
+ "web",
15
+ ]
16
+ classifiers = [
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.13",
21
+ "Topic :: Software Development :: Libraries :: Python Modules",
22
+ "Topic :: Software Development :: User Interfaces",
23
+ ]
24
+ dependencies = [
25
+ "appkit-commons",
26
+ "appkit-mantine",
27
+ "appkit-ui",
28
+ "openai>=2.3.0",
29
+ "reflex>=0.8.20",
30
+ ]
31
+
32
+ [project.urls]
33
+ Homepage = "https://github.com/jenreh/appkit"
34
+ Documentation = "https://github.com/jenreh/appkit/tree/main/docs"
35
+ Repository = "https://github.com/jenreh/appkit"
36
+ Issues = "https://github.com/jenreh/appkit/issues"
37
+
38
+ [tool.setuptools.packages.find]
39
+ where = ["src"]
40
+
41
+ [tool.uv.sources]
42
+ appkit-commons = { workspace = true }
43
+
44
+ [tool.hatch.build.targets.wheel]
45
+ packages = ["src/appkit_assistant"]
46
+
47
+ [build-system]
48
+ requires = ["hatchling"]
49
+ build-backend = "hatchling.build"
@@ -94,16 +94,13 @@ class ValidationState(rx.State):
94
94
  @rx.var
95
95
  def has_errors(self) -> bool:
96
96
  """Check if the form can be submitted."""
97
- errors = bool(
97
+ return bool(
98
98
  self.url_error
99
99
  or self.name_error
100
100
  or self.description_error
101
101
  or self.prompt_error
102
102
  )
103
103
 
104
- logger.debug("Has validation errors: %s", errors)
105
- return errors
106
-
107
104
  @rx.var
108
105
  def prompt_remaining(self) -> int:
109
106
  """Calculate remaining characters for prompt field."""
@@ -1,24 +0,0 @@
1
- [project]
2
- name = "appkit-assistant"
3
- version = "0.7.4"
4
- description = "Add your description here"
5
- readme = "README.md"
6
- authors = [{ name = "Jens Rehpöhler" }]
7
- requires-python = ">=3.13"
8
- dependencies = [
9
- "appkit-commons",
10
- "openai>=2.3.0",
11
- ]
12
-
13
- [tool.setuptools.packages.find]
14
- where = ["src"]
15
-
16
- [tool.uv.sources]
17
- appkit-commons = { workspace = true }
18
-
19
- [tool.hatch.build.targets.wheel]
20
- packages = ["src/appkit_assistant"]
21
-
22
- [build-system]
23
- requires = ["hatchling"]
24
- build-backend = "hatchling.build"