janito 2.2.0__tar.gz → 2.3.0__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 (197) hide show
  1. {janito-2.2.0 → janito-2.3.0}/PKG-INFO +388 -251
  2. {janito-2.2.0 → janito-2.3.0}/README.md +147 -10
  3. {janito-2.2.0 → janito-2.3.0}/janito/__init__.py +6 -6
  4. {janito-2.2.0 → janito-2.3.0}/janito/agent/setup_agent.py +14 -5
  5. {janito-2.2.0 → janito-2.3.0}/janito/agent/templates/profiles/system_prompt_template_main.txt.j2 +3 -1
  6. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/bindings.py +6 -0
  7. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/session.py +16 -0
  8. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/autocomplete.py +21 -21
  9. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/__init__.py +3 -0
  10. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/clear.py +12 -12
  11. janito-2.3.0/janito/cli/chat_mode/shell/commands/exec.py +27 -0
  12. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/multi.py +51 -51
  13. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/tools.py +17 -6
  14. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/input_history.py +62 -62
  15. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/session/manager.py +1 -0
  16. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/toolbar.py +1 -0
  17. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/list_models.py +35 -35
  18. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/list_providers.py +9 -9
  19. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/list_tools.py +53 -53
  20. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/model_selection.py +50 -50
  21. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/model_utils.py +13 -2
  22. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/set_api_key.py +19 -19
  23. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/show_config.py +51 -51
  24. {janito-2.2.0 → janito-2.3.0}/janito/cli/cli_commands/show_system_prompt.py +62 -62
  25. {janito-2.2.0 → janito-2.3.0}/janito/cli/config.py +2 -1
  26. {janito-2.2.0 → janito-2.3.0}/janito/cli/core/__init__.py +4 -4
  27. {janito-2.2.0 → janito-2.3.0}/janito/cli/core/event_logger.py +59 -59
  28. {janito-2.2.0 → janito-2.3.0}/janito/cli/core/getters.py +3 -1
  29. {janito-2.2.0 → janito-2.3.0}/janito/cli/core/runner.py +165 -148
  30. {janito-2.2.0 → janito-2.3.0}/janito/cli/core/setters.py +5 -1
  31. {janito-2.2.0 → janito-2.3.0}/janito/cli/core/unsetters.py +54 -54
  32. {janito-2.2.0 → janito-2.3.0}/janito/cli/main_cli.py +12 -1
  33. {janito-2.2.0 → janito-2.3.0}/janito/cli/prompt_core.py +5 -2
  34. {janito-2.2.0 → janito-2.3.0}/janito/cli/rich_terminal_reporter.py +22 -3
  35. {janito-2.2.0 → janito-2.3.0}/janito/cli/single_shot_mode/__init__.py +6 -6
  36. {janito-2.2.0 → janito-2.3.0}/janito/cli/single_shot_mode/handler.py +11 -1
  37. {janito-2.2.0 → janito-2.3.0}/janito/cli/verbose_output.py +1 -1
  38. {janito-2.2.0 → janito-2.3.0}/janito/config.py +5 -5
  39. {janito-2.2.0 → janito-2.3.0}/janito/config_manager.py +2 -0
  40. {janito-2.2.0 → janito-2.3.0}/janito/driver_events.py +14 -0
  41. {janito-2.2.0 → janito-2.3.0}/janito/drivers/anthropic/driver.py +113 -113
  42. janito-2.3.0/janito/drivers/azure_openai/driver.py +90 -0
  43. {janito-2.2.0 → janito-2.3.0}/janito/drivers/driver_registry.py +0 -2
  44. {janito-2.2.0 → janito-2.3.0}/janito/drivers/openai/driver.py +196 -36
  45. {janito-2.2.0 → janito-2.3.0}/janito/formatting_token.py +54 -54
  46. {janito-2.2.0 → janito-2.3.0}/janito/i18n/__init__.py +35 -35
  47. {janito-2.2.0 → janito-2.3.0}/janito/i18n/messages.py +23 -23
  48. {janito-2.2.0 → janito-2.3.0}/janito/i18n/pt.py +47 -47
  49. {janito-2.2.0 → janito-2.3.0}/janito/llm/__init__.py +5 -5
  50. {janito-2.2.0 → janito-2.3.0}/janito/llm/agent.py +443 -443
  51. {janito-2.2.0 → janito-2.3.0}/janito/llm/auth.py +1 -0
  52. {janito-2.2.0 → janito-2.3.0}/janito/llm/driver.py +7 -1
  53. {janito-2.2.0 → janito-2.3.0}/janito/llm/driver_config.py +1 -0
  54. {janito-2.2.0 → janito-2.3.0}/janito/llm/driver_config_builder.py +34 -34
  55. {janito-2.2.0 → janito-2.3.0}/janito/llm/driver_input.py +12 -12
  56. {janito-2.2.0 → janito-2.3.0}/janito/llm/message_parts.py +60 -60
  57. {janito-2.2.0 → janito-2.3.0}/janito/llm/model.py +38 -38
  58. {janito-2.2.0 → janito-2.3.0}/janito/llm/provider.py +196 -196
  59. {janito-2.2.0 → janito-2.3.0}/janito/provider_config.py +7 -3
  60. {janito-2.2.0 → janito-2.3.0}/janito/provider_registry.py +176 -158
  61. {janito-2.2.0 → janito-2.3.0}/janito/providers/__init__.py +1 -0
  62. {janito-2.2.0 → janito-2.3.0}/janito/providers/anthropic/model_info.py +22 -22
  63. {janito-2.2.0 → janito-2.3.0}/janito/providers/anthropic/provider.py +2 -2
  64. janito-2.3.0/janito/providers/azure_openai/model_info.py +16 -0
  65. {janito-2.2.0 → janito-2.3.0}/janito/providers/azure_openai/provider.py +30 -2
  66. {janito-2.2.0 → janito-2.3.0}/janito/providers/deepseek/__init__.py +1 -1
  67. {janito-2.2.0 → janito-2.3.0}/janito/providers/deepseek/model_info.py +16 -16
  68. {janito-2.2.0 → janito-2.3.0}/janito/providers/deepseek/provider.py +91 -91
  69. janito-2.3.0/janito/providers/google/model_info.py +32 -0
  70. janito-2.3.0/janito/providers/google/provider.py +80 -0
  71. {janito-2.2.0 → janito-2.3.0}/janito/providers/mistralai/provider.py +2 -2
  72. {janito-2.2.0 → janito-2.3.0}/janito/providers/provider_static_info.py +2 -3
  73. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/__init__.py +1 -1
  74. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/adapter.py +33 -11
  75. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/ask_user.py +102 -102
  76. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/copy_file.py +84 -84
  77. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/create_directory.py +69 -69
  78. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/create_file.py +82 -82
  79. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/delete_text_in_file.py +4 -7
  80. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/fetch_url.py +97 -97
  81. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/find_files.py +138 -138
  82. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/__init__.py +1 -1
  83. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/core.py +117 -117
  84. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/java_outline.py +40 -40
  85. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/markdown_outline.py +14 -14
  86. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/python_outline.py +303 -303
  87. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/python_outline_v2.py +156 -156
  88. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/get_file_outline/search_outline.py +33 -33
  89. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/move_file.py +3 -13
  90. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/python_code_run.py +166 -166
  91. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/python_command_run.py +164 -164
  92. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/python_file_run.py +163 -163
  93. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/remove_directory.py +6 -17
  94. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/remove_file.py +4 -10
  95. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/replace_text_in_file.py +6 -9
  96. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/run_bash_command.py +176 -176
  97. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/run_powershell_command.py +219 -219
  98. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/search_text/__init__.py +1 -1
  99. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/search_text/core.py +201 -201
  100. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/search_text/match_lines.py +1 -1
  101. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/search_text/pattern_utils.py +73 -73
  102. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/search_text/traverse_directory.py +145 -145
  103. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/__init__.py +1 -1
  104. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/core.py +106 -106
  105. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/css_validator.py +35 -35
  106. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/html_validator.py +93 -93
  107. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/js_validator.py +27 -27
  108. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/json_validator.py +6 -6
  109. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/markdown_validator.py +109 -109
  110. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/ps1_validator.py +32 -32
  111. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/python_validator.py +5 -5
  112. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/xml_validator.py +11 -11
  113. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/validate_file_syntax/yaml_validator.py +6 -6
  114. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/view_file.py +167 -167
  115. {janito-2.2.0 → janito-2.3.0}/janito/tools/inspect_registry.py +17 -17
  116. {janito-2.2.0 → janito-2.3.0}/janito/tools/tool_base.py +105 -105
  117. {janito-2.2.0 → janito-2.3.0}/janito/tools/tool_events.py +58 -58
  118. {janito-2.2.0 → janito-2.3.0}/janito/tools/tool_run_exception.py +12 -12
  119. {janito-2.2.0 → janito-2.3.0}/janito/tools/tool_use_tracker.py +81 -81
  120. {janito-2.2.0 → janito-2.3.0}/janito/tools/tool_utils.py +45 -45
  121. {janito-2.2.0 → janito-2.3.0}/janito/tools/tools_adapter.py +78 -6
  122. {janito-2.2.0 → janito-2.3.0}/janito/tools/tools_schema.py +104 -104
  123. {janito-2.2.0 → janito-2.3.0}/janito/version.py +4 -4
  124. {janito-2.2.0 → janito-2.3.0}/janito.egg-info/PKG-INFO +388 -251
  125. {janito-2.2.0 → janito-2.3.0}/janito.egg-info/SOURCES.txt +1 -2
  126. {janito-2.2.0 → janito-2.3.0}/pyproject.toml +40 -40
  127. {janito-2.2.0 → janito-2.3.0}/requirements-dev.txt +9 -9
  128. {janito-2.2.0 → janito-2.3.0}/setup.cfg +4 -4
  129. {janito-2.2.0 → janito-2.3.0}/tests/test_cli_list_models.py +1 -1
  130. {janito-2.2.0 → janito-2.3.0}/tests/test_cli_version.py +11 -11
  131. janito-2.2.0/janito/drivers/azure_openai/driver.py +0 -55
  132. janito-2.2.0/janito/drivers/google_genai/driver.py +0 -54
  133. janito-2.2.0/janito/drivers/google_genai/schema_generator.py +0 -67
  134. janito-2.2.0/janito/providers/azure_openai/model_info.py +0 -15
  135. janito-2.2.0/janito/providers/google/model_info.py +0 -40
  136. janito-2.2.0/janito/providers/google/provider.py +0 -69
  137. {janito-2.2.0 → janito-2.3.0}/LICENSE +0 -0
  138. {janito-2.2.0 → janito-2.3.0}/janito/__main__.py +0 -0
  139. {janito-2.2.0 → janito-2.3.0}/janito/agent/templates/profiles/system_prompt_template_base_pt.txt.j2 +0 -0
  140. {janito-2.2.0 → janito-2.3.0}/janito/cli/__init__.py +0 -0
  141. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/chat_entry.py +0 -0
  142. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/prompt_style.py +0 -0
  143. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/base.py +0 -0
  144. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/conversation_restart.py +0 -0
  145. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/edit.py +0 -0
  146. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/help.py +0 -0
  147. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/history_view.py +0 -0
  148. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/lang.py +0 -0
  149. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/livelogs.py +0 -0
  150. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/prompt.py +0 -0
  151. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/role.py +0 -0
  152. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/session.py +0 -0
  153. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/session_control.py +0 -0
  154. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/termweb_log.py +0 -0
  155. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/utility.py +0 -0
  156. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/commands/verbose.py +0 -0
  157. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/session/__init__.py +0 -0
  158. {janito-2.2.0 → janito-2.3.0}/janito/cli/chat_mode/shell/session/history.py +0 -0
  159. {janito-2.2.0 → janito-2.3.0}/janito/cli/console.py +0 -0
  160. {janito-2.2.0 → janito-2.3.0}/janito/cli/main.py +0 -0
  161. {janito-2.2.0 → janito-2.3.0}/janito/cli/prompt_handler.py +0 -0
  162. {janito-2.2.0 → janito-2.3.0}/janito/cli/termweb_starter.py +0 -0
  163. {janito-2.2.0 → janito-2.3.0}/janito/cli/utils.py +0 -0
  164. {janito-2.2.0 → janito-2.3.0}/janito/conversation_history.py +0 -0
  165. {janito-2.2.0 → janito-2.3.0}/janito/dir_walk_utils.py +0 -0
  166. {janito-2.2.0 → janito-2.3.0}/janito/drivers/mistralai/driver.py +0 -0
  167. {janito-2.2.0 → janito-2.3.0}/janito/event_bus/__init__.py +0 -0
  168. {janito-2.2.0 → janito-2.3.0}/janito/event_bus/bus.py +0 -0
  169. {janito-2.2.0 → janito-2.3.0}/janito/event_bus/event.py +0 -0
  170. {janito-2.2.0 → janito-2.3.0}/janito/event_bus/handler.py +0 -0
  171. {janito-2.2.0 → janito-2.3.0}/janito/event_bus/queue_bus.py +0 -0
  172. {janito-2.2.0 → janito-2.3.0}/janito/exceptions.py +0 -0
  173. {janito-2.2.0 → janito-2.3.0}/janito/formatting.py +0 -0
  174. {janito-2.2.0 → janito-2.3.0}/janito/gitignore_utils.py +0 -0
  175. {janito-2.2.0 → janito-2.3.0}/janito/perf_singleton.py +0 -0
  176. {janito-2.2.0 → janito-2.3.0}/janito/performance_collector.py +0 -0
  177. {janito-2.2.0 → janito-2.3.0}/janito/platform_discovery.py +0 -0
  178. {janito-2.2.0 → janito-2.3.0}/janito/providers/google/__init__.py +0 -0
  179. {janito-2.2.0 → janito-2.3.0}/janito/providers/mistralai/model_info.py +0 -0
  180. {janito-2.2.0 → janito-2.3.0}/janito/providers/openai/__init__.py +0 -0
  181. {janito-2.2.0 → janito-2.3.0}/janito/providers/openai/model_info.py +0 -0
  182. {janito-2.2.0 → janito-2.3.0}/janito/providers/openai/provider.py +0 -0
  183. {janito-2.2.0 → janito-2.3.0}/janito/providers/openai/schema_generator.py +0 -0
  184. {janito-2.2.0 → janito-2.3.0}/janito/providers/registry.py +0 -0
  185. {janito-2.2.0 → janito-2.3.0}/janito/report_events.py +0 -0
  186. {janito-2.2.0 → janito-2.3.0}/janito/termweb/app.py +0 -0
  187. {janito-2.2.0 → janito-2.3.0}/janito/tools/__init__.py +0 -0
  188. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/__init__.py +0 -0
  189. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/open_html_in_browser.py +0 -0
  190. {janito-2.2.0 → janito-2.3.0}/janito/tools/adapters/local/open_url.py +0 -0
  191. {janito-2.2.0 → janito-2.3.0}/janito/utils.py +0 -0
  192. {janito-2.2.0 → janito-2.3.0}/janito.egg-info/dependency_links.txt +0 -0
  193. {janito-2.2.0 → janito-2.3.0}/janito.egg-info/entry_points.txt +0 -0
  194. {janito-2.2.0 → janito-2.3.0}/janito.egg-info/requires.txt +0 -0
  195. {janito-2.2.0 → janito-2.3.0}/janito.egg-info/top_level.txt +0 -0
  196. {janito-2.2.0 → janito-2.3.0}/requirements.txt +0 -0
  197. {janito-2.2.0 → janito-2.3.0}/tests/test_cli_list_providers.py +0 -0
@@ -1,251 +1,388 @@
1
- Metadata-Version: 2.4
2
- Name: janito
3
- Version: 2.2.0
4
- Summary: A new Python package called janito.
5
- Author-email: João Pinto <lamego.pinto@gmail.com>
6
- Project-URL: Homepage, https://github.com/janito-dev/janito
7
- Requires-Python: >=3.7
8
- Description-Content-Type: text/markdown
9
- License-File: LICENSE
10
- Requires-Dist: attrs==25.3.0
11
- Requires-Dist: rich==14.0.0
12
- Requires-Dist: pathspec==0.12.1
13
- Requires-Dist: setuptools>=61.0
14
- Requires-Dist: pyyaml>=6.0
15
- Requires-Dist: jinja2>=3.0.0
16
- Requires-Dist: prompt_toolkit>=3.0.51
17
- Requires-Dist: lxml>=5.4.0
18
- Requires-Dist: requests>=2.32.4
19
- Requires-Dist: bs4>=0.0.2
20
- Provides-Extra: dev
21
- Requires-Dist: pytest; extra == "dev"
22
- Requires-Dist: pre-commit; extra == "dev"
23
- Requires-Dist: ruff==0.11.9; extra == "dev"
24
- Requires-Dist: detect-secrets==1.4.0; extra == "dev"
25
- Requires-Dist: codespell==2.4.1; extra == "dev"
26
- Requires-Dist: black; extra == "dev"
27
- Dynamic: license-file
28
-
29
- # Janito
30
-
31
- Janito is a command-line interface (CLI) tool for managing and interacting with Large Language Model (LLM) providers. It enables you to configure API keys, select providers and models, and submit prompts to various LLMs from your terminal. Janito is designed for extensibility, supporting multiple providers and a wide range of tools for automation and productivity.
32
-
33
- ## Features
34
-
35
- - 🔑 Manage API keys and provider configurations
36
- - 🤖 Interact with multiple LLM providers (OpenAI, Google, Mistral, , and more)
37
- - 🛠️ List and use a variety of registered tools
38
- - 📝 Submit prompts and receive responses directly from the CLI
39
- - 📋 List available models for each provider
40
- - 🧩 Extensible architecture for adding new providers and tools
41
- - 🎛️ Rich terminal output and event logging
42
-
43
- ### Advanced and Architectural Features
44
-
45
- - ⚡ **Event-driven architecture**: Modular, decoupled system using a custom EventBus for extensibility and integration.
46
- - 🧑‍💻 **Tool registry & dynamic tool execution**: Register new tools easily, execute them by name or call from automation pipelines.
47
- - 🤖 **LLM Agent automation**: Supports agent-like workflows with the ability to chain tools or make decisions during LLM conversations.
48
- - 🏗️ **Extensible provider management**: Add, configure, or switch between LLM providers and their models on the fly.
49
- - 🧰 **Rich tool ecosystem**: Includes file operations, local/remote script and command execution, text processing, and internet access (fetching URLs), all reusable by LLM or user.
50
- - 📝 **Comprehensive event & history reporting**: Detailed logs of prompts, events, tool usage, and responses for traceability and audit.
51
- - 🖥️ **Enhanced terminal UI**: Colorful, informative real-time outputs and logs to improve productivity and insight during LLM usage.
52
-
53
- ## Installation
54
-
55
- Janito is a Python package. Since this is a development version, install it directly from GitHub:
56
-
57
- ```bash
58
- pip install git+https://github.com/janito-dev/janito.git
59
- ```
60
-
61
- ## Usage
62
-
63
- After installation, use the `janito` command in your terminal.
64
-
65
- ### Basic Commands
66
-
67
- - **Set API Key for a Provider (requires -p PROVIDER)**
68
- ```bash
69
- janito --set-api-key API_KEY -p PROVIDER
70
- ```
71
- > **Note:** The `-p PROVIDER` argument is required when setting an API key. For example:
72
- > ```bash
73
- > janito --set-api-key sk-xxxxxxx -p openai
74
- > ```
75
-
76
- - **Set the Provider**
77
- ```bash
78
- janito --set provider=provider_name
79
- ```
80
-
81
- - **List Supported Providers**
82
- ```bash
83
- janito --list-providers
84
- ```
85
-
86
- - **List Registered Tools**
87
- ```bash
88
- janito --list-tools
89
- ```
90
-
91
- - **List Models for a Provider**
92
- ```bash
93
- janito -p PROVIDER --list-models
94
- ```
95
-
96
- - **Submit a Prompt**
97
- ```bash
98
- janito "What is the capital of France?"
99
- ```
100
-
101
- - **Start Interactive Chat Shell**
102
- ```bash
103
- janito
104
- ```
105
-
106
- ### Advanced Options
107
-
108
- - **Enable Inline Web File Viewer for Clickable Links**
109
-
110
- By default, Janito can open referenced files in a browser-based viewer when you click on file links in supported terminals. To enable this feature for your session, use the `-w` or `--web` flag:
111
-
112
- ```bash
113
- janito -w
114
- ```
115
- This starts the lightweight web file viewer (termweb) in the background, allowing you to inspect files referenced in responses directly in your browser. Combine with interactive mode or prompts as needed.
116
-
117
- > **Tip:** Use with the interactive shell for the best experience with clickable file links.
118
-
119
-
120
- - **Enable Execution Tools (Code/Shell Execution)**
121
-
122
- By default, tools that can execute code or shell commands are **disabled** for safety. To enable these tools (such as code execution, shell commands, etc.), use the `--exec` or `-x` flag:
123
-
124
- ```bash
125
- janito -x "Run this code: print('Hello, world!')"
126
- ```
127
- > **Warning:** Enabling execution tools allows running arbitrary code or shell commands. Only use `--exec` if you trust your prompt and environment.
128
-
129
- - **Set a System Prompt**
130
- ```bash
131
- janito -s path/to/system_prompt.txt "Your prompt here"
132
- ```
133
-
134
- - **Select Model and Provider Temporarily**
135
- ```bash
136
- janito -p openai -m gpt-3.5-turbo "Your prompt here"
137
- ```
138
-
139
- - **Set Provider-Specific Config (for the selected provider)**
140
- ```bash
141
- # syntax: janito --set PROVIDER.KEY=VALUE
142
- # example: set the default model for openai provider
143
- janito --set openai.model=gpt-4o
144
-
145
- ```
146
- > **Note:** Use `--set PROVIDER.key=value` for provider-specific settings (e.g., `openai.max_tokens`, `openai.base_url`).
147
-
148
- - **Enable Event Logging**
149
- ```bash
150
- janito -e "Your prompt here"
151
- ```
152
-
153
- ## 🌟 CLI Options Reference
154
-
155
- ### Core CLI Options
156
- | Option | Description |
157
- |------------------------|-----------------------------------------------------------------------------|
158
- | `-w`, `--web` | Enable the builtin lightweight web file viewer for clickable file links (termweb). |
159
-
160
- |------------------------|-----------------------------------------------------------------------------|
161
- | `--version` | Show program version |
162
- | `--list-tools` | List all registered tools |
163
- | `--list-providers` | List all supported LLM providers |
164
- | `-l`, `--list-models` | List models for current/selected provider |
165
- | `--set-api-key` | Set API key for a provider. **Requires** `-p PROVIDER` to specify the provider. |
166
- | `--set provider=name` | Set the current LLM provider (e.g., `janito --set provider=openai`) |
167
- | `--set PROVIDER.model=MODEL` or `--set model=MODEL` | Set the default model for the current/selected provider, or globally. (e.g., `janito --set openai.model=gpt-3.5-turbo`) |
168
- | `-s`, `--system` | Set a system prompt (e.g., `janito -s path/to/system_prompt.txt "Your prompt here"`) |
169
- | `-r`, `--role` | Set the role for the agent (overrides config) (e.g., `janito -r "assistant" "Your prompt here"`) |
170
- | `-p`, `--provider` | Select LLM provider (overrides config) (e.g., `janito -p openai "Your prompt here"`) |
171
- | `-m`, `--model` | Select model for the provider (e.g., `janito -m gpt-3.5-turbo "Your prompt here"`) |
172
- | `-v`, `--verbose` | Print extra information before answering |
173
- | `-R`, `--raw` | Print raw JSON response from API |
174
- | `-e`, `--event-log` | Log events to console as they occur |
175
- | `["user_prompt"]...` | Prompt to submit (if no other command is used) (e.g., `janito "What is the capital of France?"`) |
176
-
177
- ### 🧩 Extended Chat Mode Commands
178
- Once inside the interactive chat mode, you can use these slash commands:
179
-
180
- #### 📲 Basic Interaction
181
- | Command | Description |
182
- |-------------------|----------------------------------------------|
183
- | `/exit` or `exit` | Exit chat mode |
184
- | `/help` | Show available commands |
185
- | `/multi` | Activate multiline input mode |
186
- | `/clear` | Clear the terminal screen |
187
- | `/history` | Show input history |
188
- | `/view` | Print current conversation history |
189
- | `/track` | Show tool usage history |
190
-
191
- #### 💬 Conversation Management
192
- | Command | Description |
193
- |---------------------|----------------------------------------------|
194
- | `/restart` or `/start` | Start a new conversation (reset context) |
195
- | `/prompt` | Show the current system prompt |
196
- | `/role <description>` | Change the system role |
197
- | `/lang [code]` | Change interface language (e.g., `/lang en`) |
198
-
199
- #### 🛠️ Tool & Provider Interaction
200
- | Command | Description |
201
- |----------------------|----------------------------------------------|
202
- | `/tools` | List available tools |
203
- | `/termweb-status` | Show status of termweb server |
204
- | `/termweb-logs` | Show last lines of termweb logs |
205
- | `/livelogs` | Show live updates from server log file |
206
- | `/edit <filename>` | Open file in browser-based editor |
207
-
208
- #### 📊 Output Control
209
- | Command | Description |
210
- |---------------------|----------------------------------------------|
211
- | `/verbose` | Show current verbose mode status |
212
- | `/verbose [on|off]` | Set verbose mode |
213
-
214
- ## Extending Janito
215
-
216
- Janito is built to be extensible. You can add new LLM providers or tools by implementing new modules in the `janito/providers` or `janito/tools` directories, respectively. See the source code and developer documentation for more details.
217
-
218
- ## Supported Providers
219
-
220
- - OpenAI
221
- - DeepSeek
222
-
223
- ## Contributing
224
-
225
- Contributions are welcome! Please see the `CONTRIBUTING.md` (if available) or open an issue to get started.
226
-
227
- ## License
228
-
229
- This project is licensed under the terms of the MIT license.
230
-
231
- For more information, see the documentation in the `docs/` directory or run `janito --help`.
232
-
233
- ---
234
-
235
- ## 📖 Detailed Documentation
236
-
237
- Full and up-to-date documentation is available at: https://janito-dev.github.io/janito/
238
-
239
- ---
240
-
241
- ## FAQ: Setting API Keys
242
-
243
- To set an API key for a provider, you **must** specify both the API key and the provider name:
244
-
245
- ```bash
246
- janito --set-api-key YOUR_API_KEY -p PROVIDER_NAME
247
- ```
248
-
249
- Replace `YOUR_API_KEY` with your actual key and `PROVIDER_NAME` with the provider (e.g., `openai`, `google`, etc.).
250
-
251
- If you omit the `-p PROVIDER_NAME` argument, Janito will show an error and not set the key.
1
+ Metadata-Version: 2.4
2
+ Name: janito
3
+ Version: 2.3.0
4
+ Summary: A new Python package called janito.
5
+ Author-email: João Pinto <lamego.pinto@gmail.com>
6
+ Project-URL: Homepage, https://github.com/janito-dev/janito
7
+ Requires-Python: >=3.7
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: attrs==25.3.0
11
+ Requires-Dist: rich==14.0.0
12
+ Requires-Dist: pathspec==0.12.1
13
+ Requires-Dist: setuptools>=61.0
14
+ Requires-Dist: pyyaml>=6.0
15
+ Requires-Dist: jinja2>=3.0.0
16
+ Requires-Dist: prompt_toolkit>=3.0.51
17
+ Requires-Dist: lxml>=5.4.0
18
+ Requires-Dist: requests>=2.32.4
19
+ Requires-Dist: bs4>=0.0.2
20
+ Provides-Extra: dev
21
+ Requires-Dist: pytest; extra == "dev"
22
+ Requires-Dist: pre-commit; extra == "dev"
23
+ Requires-Dist: ruff==0.11.9; extra == "dev"
24
+ Requires-Dist: detect-secrets==1.4.0; extra == "dev"
25
+ Requires-Dist: codespell==2.4.1; extra == "dev"
26
+ Requires-Dist: black; extra == "dev"
27
+ Dynamic: license-file
28
+
29
+ # Janito
30
+
31
+ Janito is a command-line interface (CLI) tool for managing and interacting with Large Language Model (LLM) providers. It enables you to configure API keys, select providers and models, and submit prompts to various LLMs from your terminal. Janito is designed for extensibility, supporting multiple providers and a wide range of tools for automation and productivity.
32
+
33
+ ## Features
34
+
35
+ - 🔑 Manage API keys and provider configurations
36
+ - 🤖 Interact with multiple LLM providers (OpenAI, Google Gemini, Mistral, DeepSeek, and more)
37
+ - 🛠️ List and use a variety of registered tools
38
+ - 📝 Submit prompts and receive responses directly from the CLI
39
+ - 📋 List available models for each provider
40
+ - 🧩 Extensible architecture for adding new providers and tools
41
+ - 🎛️ Rich terminal output and event logging
42
+
43
+ ### Advanced and Architectural Features
44
+
45
+ - ⚡ **Event-driven architecture**: Modular, decoupled system using a custom EventBus for extensibility and integration.
46
+ - 🧑‍💻 **Tool registry & dynamic tool execution**: Register new tools easily, execute them by name or call from automation pipelines.
47
+ - 🤖 **LLM Agent automation**: Supports agent-like workflows with the ability to chain tools or make decisions during LLM conversations.
48
+ - 🏗️ **Extensible provider management**: Add, configure, or switch between LLM providers and their models on the fly.
49
+ - 🧰 **Rich tool ecosystem**: Includes file operations, local/remote script and command execution, text processing, and internet access (fetching URLs), all reusable by LLM or user.
50
+ - 📝 **Comprehensive event & history reporting**: Detailed logs of prompts, events, tool usage, and responses for traceability and audit.
51
+ - 🖥️ **Enhanced terminal UI**: Colorful, informative real-time outputs and logs to improve productivity and insight during LLM usage.
52
+
53
+ ## Installation
54
+
55
+ Janito is a Python package. Since this is a development version, you can install it directly from GitHub:
56
+
57
+ ```bash
58
+ pip install git+https://github.com/janito-dev/janito.git
59
+ ```
60
+
61
+ ### First launch and quick setup
62
+
63
+ Janito integrates with external LLM providers (list below), and most of them require a subscription to get an API_KEY.
64
+
65
+ > [!NOTE]
66
+ > Today, on June the 26th 2025, Google has a free tier subscription for its Gemini-2.5-flash model. Despite the limitation of the model and of the rate limit of the free tier, it can be used for testing janito. The API_KEY for Gemini is available [here](https://aistudio.google.com/app/apikey).
67
+
68
+ > [!NOTE]
69
+ > [Here](https://github.com/cheahjs/free-llm-api-resources/blob/main/README.md) a list of various services that provide free access or credits towards API-based LLM usage. Note that not all of them are supported by Janito, yet.
70
+
71
+ For a quick usage you can:
72
+
73
+ 1. once you get the API_KEY from your favourite LLM provider, setup the API_KEY in Janito
74
+
75
+ ```bash
76
+ janito --set-api-key API_KEY -p PROVIDER
77
+ ```
78
+
79
+ 2. then run janito from command line with the specific LLM provider of your choice
80
+
81
+ ```bash
82
+ janito -p PROVIDER "Hello, who are you? How can you help me in my tasks?"
83
+ ```
84
+
85
+ 3. or you can run janito in interactive mode without the trailing argument
86
+
87
+ ```bash
88
+ janito -p PROVIDER
89
+ ```
90
+
91
+ 4. if you want to setup a specific provider for any further interactions you can use:
92
+
93
+ ```bash
94
+ janito -set provider=PROVIDER
95
+ ```
96
+
97
+ > [!WARNING]
98
+ > Currently the supported providers are: `openai`, `google`, `azure_openai`. You can get more details with `janito --list-providers`.
99
+
100
+ 5. for more advanced setup, continue reading.
101
+
102
+
103
+ ## Usage
104
+
105
+ After installation, use the `janito` command in your terminal.
106
+
107
+ Janito has configuration options, like `--set api-key API_KEY` and `--set provider=PROVIDER`, that create durable configurations and single shoot options, like `-p PROVIDER` and `-m MODEL`, that are active for the single run of the command or session.
108
+
109
+ ### Basic Commands
110
+
111
+ - **Set API Key for a Provider (requires -p PROVIDER)**
112
+ ```bash
113
+ janito --set-api-key API_KEY -p PROVIDER
114
+ ```
115
+ > **Note:** The `-p PROVIDER` argument is required when setting an API key. For example:
116
+ > ```bash
117
+ > janito --set-api-key sk-xxxxxxx -p openai
118
+ > ```
119
+
120
+ - **Set the Provider (durable)**
121
+ ```bash
122
+ janito --set provider=provider_name
123
+ ```
124
+
125
+ - **List Supported Providers**
126
+ ```bash
127
+ janito --list-providers
128
+ ```
129
+
130
+ - **List Registered Tools**
131
+ ```bash
132
+ janito --list-tools
133
+ ```
134
+
135
+ - **List Models for a Provider**
136
+ ```bash
137
+ janito -p PROVIDER --list-models
138
+ ```
139
+
140
+ - **Submit a Prompt**
141
+ ```bash
142
+ janito "What is the capital of France?"
143
+ ```
144
+
145
+ - **Start Interactive Chat Shell**
146
+ ```bash
147
+ janito
148
+ ```
149
+
150
+ ### Advanced Options
151
+
152
+ - **Enable Inline Web File Viewer for Clickable Links**
153
+
154
+ By default, Janito can open referenced files in a browser-based viewer when you click on file links in supported terminals. To enable this feature for your session, use the `-w` or `--web` flag:
155
+
156
+ ```bash
157
+ janito -w
158
+ ```
159
+
160
+ This starts the lightweight web file viewer (termweb) in the background, allowing you to inspect files referenced in responses directly in your browser. Combine with interactive mode or prompts as needed.
161
+
162
+ > **Tip:** Use with the interactive shell for the best experience with clickable file links.
163
+
164
+
165
+ - **Enable Execution Tools (Code/Shell Execution)**
166
+
167
+ By default, tools that can execute code or shell commands are **disabled** for safety. To enable these tools (such as code execution, shell commands, etc.), use the `--exec` or `-x` flag:
168
+
169
+ ```bash
170
+ janito -x "Run this code: print('Hello, world!')"
171
+ ```
172
+ > **Warning:** Enabling execution tools allows running arbitrary code or shell commands. Only use `--exec` if you trust your prompt and environment.
173
+
174
+ - **Set a System Prompt**
175
+ ```bash
176
+ janito -s path/to/system_prompt.txt "Your prompt here"
177
+ ```
178
+
179
+ - **Select Model and Provider Temporarily**
180
+ ```bash
181
+ janito -p openai -m gpt-3.5-turbo "Your prompt here"
182
+ janito -p google -m gemini-2.5-flash "Your prompt here"
183
+ ```
184
+
185
+ - **Set Provider-Specific Config (for the selected provider)**
186
+ ```bash
187
+ # syntax: janito --set PROVIDER.KEY=VALUE
188
+ # example: set the default model for openai provider
189
+ janito --set openai.model=gpt-4o
190
+
191
+ ```
192
+ > **Note:** Use `--set PROVIDER.key=value` for provider-specific settings (e.g., `openai.max_tokens`, `openai.base_url`).
193
+
194
+ - **Enable Event Logging**
195
+ ```bash
196
+ janito -e "Your prompt here"
197
+ ```
198
+
199
+ ## 🌟 CLI Options Reference
200
+
201
+ ### Core CLI Options
202
+ | Option | Description |
203
+ |------------------------|-----------------------------------------------------------------------------|
204
+ | `-w`, `--web` | Enable the builtin lightweight web file viewer for clickable file links (termweb). |
205
+ | `--version` | Show program version |
206
+ | `--list-tools` | List all registered tools |
207
+ | `--list-providers` | List all supported LLM providers |
208
+ | `-l`, `--list-models` | List models for current/selected provider |
209
+ | `--set-api-key` | Set API key for a provider. **Requires** `-p PROVIDER` to specify the provider. |
210
+ | `--set provider=name` | Set the current LLM provider (e.g., `janito --set provider=openai`) |
211
+ | `--set PROVIDER.model=MODEL` or `--set model=MODEL` | Set the default model for the current/selected provider, or globally. (e.g., `janito --set openai.model=gpt-3.5-turbo`) |
212
+ | `-s`, `--system` | Set a system prompt (e.g., `janito -s path/to/system_prompt.txt "Your prompt here"`) |
213
+ | `-r`, `--role` | Set the role for the agent (overrides config) (e.g., `janito -r "assistant" "Your prompt here"`) |
214
+ | `-p`, `--provider` | Select LLM provider (overrides config) (e.g., `janito -p openai "Your prompt here"`) |
215
+ | `-m`, `--model` | Select model for the provider (e.g., `janito -m gpt-3.5-turbo "Your prompt here"`) |
216
+ | `-v`, `--verbose` | Print extra information before answering |
217
+ | `-R`, `--raw` | Print raw JSON response from API |
218
+ | `-e`, `--event-log` | Log events to console as they occur |
219
+ | `"user_prompt"` | Prompt to submit for the non interactive mode (e.g. `janito "What is the capital of France?"`) |
220
+
221
+ ### 🧩 Extended Chat Mode Commands
222
+ Once inside the interactive chat mode, you can use these slash commands:
223
+
224
+ #### 📲 Basic Interaction
225
+ | Command | Description |
226
+ |-------------------|----------------------------------------------|
227
+ | `/exit` or `exit` | Exit chat mode |
228
+ | `/help` | Show available commands |
229
+ | `/multi` | Activate multiline input mode |
230
+ | `/clear` | Clear the terminal screen |
231
+ | `/history` | Show input history |
232
+ | `/view` | Print current conversation history |
233
+ | `/track` | Show tool usage history |
234
+
235
+ #### 💬 Conversation Management
236
+ | Command | Description |
237
+ |---------------------|----------------------------------------------|
238
+ | `/restart` | Start a new conversation (reset context) |
239
+ | `/prompt` | Show the current system prompt |
240
+ | `/role <description>` | Change the system role |
241
+ | `/lang [code]` | Change interface language (e.g., `/lang en`) |
242
+
243
+ #### 🛠️ Tool & Provider Interaction
244
+ | Command | Description |
245
+ |----------------------|----------------------------------------------|
246
+ | `/tools` | List available tools |
247
+ | `/termweb-status` | Show status of termweb server |
248
+ | `/termweb-logs` | Show last lines of termweb logs |
249
+ | `/livelogs` | Show live updates from server log file |
250
+ | `/edit <filename>` | Open file in browser-based editor |
251
+
252
+ #### 📊 Output Control
253
+ | Command | Description |
254
+ |---------------------|----------------------------------------------|
255
+ | `/verbose` | Show current verbose mode status |
256
+ | `/verbose [on|off]` | Set verbose mode |
257
+
258
+ ## Extending Janito
259
+
260
+ Janito is built to be extensible. You can add new LLM providers or tools by implementing new modules in the `janito/providers` or `janito/tools` directories, respectively. See the source code and developer documentation for more details.
261
+
262
+ ## Supported Providers
263
+
264
+ - OpenAI
265
+ - OpenAI over Azure
266
+ - Google Gemini
267
+ - DeepSeek
268
+
269
+ See [docs/supported-providers-models.md](docs/supported-providers-models.md) for more details.
270
+
271
+ ## Contributing
272
+
273
+ Contributions are welcome! Please see the `CONTRIBUTING.md` (if available) or open an issue to get started.
274
+
275
+ ## License
276
+
277
+ This project is licensed under the terms of the MIT license.
278
+
279
+ For more information, see the documentation in the `docs/` directory or run `janito --help`.
280
+
281
+ ---
282
+
283
+ # Support
284
+
285
+
286
+ ## 📖 Detailed Documentation
287
+
288
+ Full and up-to-date documentation is available at: https://janito-dev.github.io/janito/
289
+
290
+ ---
291
+
292
+
293
+ ## FAQ: Setting API Keys
294
+
295
+ - [Multiple API_KEY setup](#faq-multiple-api-key)
296
+ - [Use a specific model](#faq-use-specific-model)
297
+ - [Fetch the availale LLM providers](#faq-fetch-providers)
298
+ - [Fetch the availale models](#faq-fetch-models)
299
+
300
+
301
+ <a id="faq-multiple-api-key"></a>
302
+ ### Multiple API_KEY setup
303
+
304
+ To set an API key for a provider, you **must** specify both the API key and the provider name:
305
+
306
+ ```bash
307
+ janito --set-api-key YOUR_API_KEY -p PROVIDER_NAME
308
+ ```
309
+
310
+ You can have an API_KEY for each LLM provider
311
+
312
+ ```bash
313
+ janito --set-api-key API_KEY_1 -p PROVIDER_1
314
+ janito --set-api-key API_KEY_2 -p PROVIDER_2
315
+ ```
316
+
317
+ Then you can easily use one provider or the other without changing the API_KEY
318
+
319
+ ```bash
320
+ janito -p PROVIDER_1 "What provider do you use?"
321
+ janito -p PROVIDER_2 "What provider do you use?"
322
+ ```
323
+
324
+ If you omit the `-p PROVIDER_NAME` argument, Janito will show an error and not set the key.
325
+
326
+ <a id="faq-use-specific-model"></a>
327
+ ### Use a specific model
328
+
329
+ To use a specific model, you can use the `-m` option in the follwing way:
330
+
331
+ ```bash
332
+ janito -m gpt-4.1-nano -p openai "What model do you use?"
333
+ ```
334
+
335
+ Or you can use the durable `--set` option:
336
+
337
+ ```bash
338
+ janito --set provider=openai
339
+ janito --set model=gpt-4.1-nano
340
+ janito "What model do you use?"
341
+ ```
342
+
343
+ <a id="faq-fetch-providers"></a>
344
+ ### Fetch the availale LLM providers
345
+
346
+ You can list all the LLM providers available using:
347
+
348
+ ```bash
349
+ janito --list-providers
350
+ ```
351
+
352
+ <a id="faq-fetch-models"></a>
353
+ ### Fetch the availale models
354
+
355
+ Each LLM provider has its own models, the best way to check what are the available models is usign the following commands:
356
+
357
+ ```bash
358
+ janito -p openai --list-models
359
+ janito -p google --list-models
360
+ janito -p azure_openai --list-models
361
+ janito -p deepseek --list-models
362
+ ```
363
+
364
+
365
+ ## Ask Me Anything
366
+
367
+ <div align="center">
368
+ <a href="https://github.com/janito-dev/janito" title="Ask Me Anything">
369
+ <img width="250" src="docs/imgs/ama.png" alt="Ask Me Anything">
370
+ </a>
371
+ </div
372
+
373
+ When the FAQ are not enough, you can contact the contributors of the project by direct questions
374
+
375
+ <p align="center">
376
+ <kbd><a href="../../issues/new?labels=question">Ask a question</a></kbd> <kbd><a href="../../issues?q=is%3Aissue+is%3Aclosed+label%3Aquestion">Read questions</a></kbd>
377
+ </p>
378
+
379
+ #### Guidelines
380
+
381
+ - :mag: Ensure your question hasn't already been answered.
382
+ - :memo: Use a succinct title and description.
383
+ - :bug: Bugs & feature requests should be opened on the relevant issue tracker.
384
+ - :signal_strength: Support questions are better asked on Stack Overflow.
385
+ - :blush: Be nice, civil and polite.
386
+ - :heart_eyes: If you include at least one emoji in your question, the feedback will probably come faster.
387
+ - [Read more AMAs](https://github.com/sindresorhus/amas)
388
+ - [What's an AMA?](https://en.wikipedia.org/wiki/R/IAmA)