.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. logs
  2. .idea/
  3. .DS_Store
  4. .ipynb_checkpoints
  5. __pycache__
  6. .idea
  7. context_restoration
  8. .pytest_cache
  9. .env
  10. temp/
  11. pyopenagi/environments/
  12. deplogs.txt
  13. web/deplogs.txt
  14. # IPython
  15. profile_default/
  16. ipython_config.py
  17. # Remove previous ipynb_checkpoints
  18. # git rm -r .ipynb_checkpoints/
  19. ### Python ###
  20. # Byte-compiled / optimized / DLL files
  21. *.py[cod]
  22. *$py.class
  23. # C extensions
  24. *.so
  25. # Distribution / packaging
  26. .Python
  27. build/
  28. develop-eggs/
  29. dist/
  30. downloads
  31. eggs
  32. .eggs/
  33. # lib
  34. lib64
  35. bin
  36. parts/
  37. sdist
  38. var/
  39. wheels
  40. share/python-wheels/
  41. *.egg-info/
  42. .installed.cfg
  43. *.egg
  44. MANIFEST
  45. # PyInstaller
  46. # Usually these files are written by a python script from a template
  47. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  48. *.manifest
  49. *.spec
  50. # Installer logs
  51. pip-log.txt
  52. pip-delete-this-directory.txt
  53. # Unit test / coverage reports
  54. htmlcov/
  55. .tox/
  56. .nox/
  57. .coverage
  58. .coverage.*
  59. .cache
  60. nosetests.xml
  61. coverage.xml
  62. *.cover
  63. *.py,cover
  64. .hypothesis/
  65. .pytest_cache/
  66. cover/
  67. # Translations
  68. *.mo
  69. *.pot
  70. # Django stuff:
  71. *.log
  72. local_settings.py
  73. db.sqlite3
  74. db.sqlite3-journal
  75. # Flask stuff:
  76. instance/
  77. .webassets-cache
  78. # Scrapy stuff:
  79. .scrapy
  80. # Sphinx documentation
  81. docs/_build/
  82. # PyBuilder
  83. .pybuilder/
  84. target
  85. build
  86. output
  87. # Jupyter Notebook
  88. # IPython
  89. # pyenv
  90. # For a library or package, you might want to ignore these files since the code is
  91. # intended to run in multiple environments; otherwise, check them in:
  92. # .python-version
  93. # pipenv
  94. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  95. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  96. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  97. # install all needed dependencies.
  98. #Pipfile.lock
  99. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  100. __pypackages__
  101. # Celery stuff
  102. celerybeat-schedule
  103. celerybeat.pid
  104. # SageMath parsed files
  105. *.sage.py
  106. # Environments
  107. .env
  108. .venv
  109. env/
  110. venv/
  111. ENV/
  112. env.bak/
  113. venv.bak/
  114. # Spyder project settings
  115. .spyderproject
  116. .spyproject
  117. # Rope project settings
  118. .ropeproject
  119. # mkdocs documentation
  120. /site
  121. # mypy
  122. .mypy_cache/
  123. .dmypy.json
  124. dmypy.json
  125. # Pyre type checker
  126. .pyre/
  127. # pytype static type analyzer
  128. .pytype/
  129. # Cython debug symbols
  130. cython_debug/
  131. # End of https://www.toptal.com/developers/gitignore/api/python,jupyternotebooks
  132. /pyopenagi/environments/
  133. # dependencies
  134. node_modules
  135. /.pnp
  136. .pnp.js
  137. .yarn/install-state.gz
  138. # testing
  139. /coverage
  140. # next.js
  141. /.next/
  142. .next/
  143. /out/
  144. # production
  145. /build
  146. # misc
  147. .DS_Store
  148. *.pem
  149. # debug
  150. npm-debug.log*
  151. yarn-debug.log*
  152. yarn-error.log*
  153. # local env files
  154. .env*.local
  155. # vercel
  156. .vercel
  157. # typescript
  158. *.tsbuildinfo
  159. next-env.d.ts
  160. # metagpt
  161. metagpt
  162. workspace
  163. cache