|
| 1 | +.. ICortex documentation master file, created by |
| 2 | + sphinx-quickstart on Thu Oct 20 13:49:41 2022. |
| 3 | + You can adapt this file completely to your liking, but it should at least |
| 4 | + contain the root `toctree` directive. |
| 5 | +
|
| 6 | +ICortex |
| 7 | +======= |
| 8 | + |
| 9 | + |
| 10 | +ICortex is a `Jupyter kernel <https://jupyter-client.readthedocs.io/en/latest/kernels.html>`__ |
| 11 | +that lets you program using plain English, by generating Python |
| 12 | +code from natural language prompts: |
| 13 | + |
| 14 | +.. video:: https://user-images.githubusercontent.com/2453968/196814906-1a0de2a1-27a7-4aec-a960-0eb21fbe2879.mp4 |
| 15 | + :width: 640 |
| 16 | + |
| 17 | +It is … |
| 18 | + |
| 19 | +- a drop-in replacement for the IPython kernel. Prompts start with a |
| 20 | + forward slash ``/``—otherwise the line is treated as regular Python |
| 21 | + code. |
| 22 | +- an interface for `Natural Language |
| 23 | + Programming <https://en.wikipedia.org/wiki/Natural-language_programming>`__—prompts |
| 24 | + written in plain English automatically generate |
| 25 | + Python code which can then be executed globally. |
| 26 | +- interactive—install missing packages directly, decide whether to |
| 27 | + execute the generated code or not, and so on, directly in the Jupyter |
| 28 | + Notebook cell. |
| 29 | +- open source and fully extensible—if you think we are missing a model |
| 30 | + or an API, you can request it by creating an issue, or implement it |
| 31 | + yourself by subclassing ``ServiceBase`` under |
| 32 | + `icortex/services <https://github.com/textcortex/icortex/tree/main/icortex/services>`__. |
| 33 | + |
| 34 | +Get started |
| 35 | +----------- |
| 36 | + |
| 37 | +Visit :doc:`Quickstart<quickstart>` to see all the ways you can start using ICortex. |
| 38 | + |
| 39 | +If you are experiencing any problems or bugs, `join our Discord <https://discord.textcortex.com/>`__ to get help. |
| 40 | + |
| 41 | +Index |
| 42 | +----- |
| 43 | + |
| 44 | +.. toctree:: |
| 45 | + :maxdepth: 2 |
| 46 | + |
| 47 | + quickstart |
| 48 | + |
| 49 | +.. * :ref:`genindex` |
| 50 | +.. * :ref:`modindex` |
| 51 | +.. * :ref:`search` |
0 commit comments