├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── docs ├── IDi_documentacion.md └── arquitectura.md ├── pyproject.toml ├── requirements.txt └── src └── codeas ├── __init__.py ├── configs ├── agents_configs.py ├── llm_params.py └── prompts.py ├── core ├── agent.py ├── clients.py ├── llm.py ├── metadata.py ├── repo.py ├── retriever.py ├── state.py └── usage_tracker.py ├── main.py ├── ui ├── components │ ├── __init__.py │ ├── deployment_ui.py │ ├── documentation_ui.py │ ├── metadata_ui.py │ ├── page_ui.py │ ├── refactoring_ui.py │ ├── repo_ui.py │ └── testing_ui.py ├── pages │ ├── 1_📚_Documentation.py │ ├── 2_🚀_Deployment.py │ ├── 3_🧪_Testing.py │ ├── 4_🔄_Refactoring.py │ ├── 5_💬_Chat.py │ ├── 6_📝_Prompts.py │ └── 7_🔍_Usage.py ├── ui_state.py ├── utils.py └── 🏠_Home.py └── use_cases ├── deployment.py ├── documentation.py ├── refactoring.py └── testing.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/README.md -------------------------------------------------------------------------------- /docs/IDi_documentacion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/docs/IDi_documentacion.md -------------------------------------------------------------------------------- /docs/arquitectura.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/docs/arquitectura.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/codeas/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.4.1" 2 | -------------------------------------------------------------------------------- /src/codeas/configs/agents_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/configs/agents_configs.py -------------------------------------------------------------------------------- /src/codeas/configs/llm_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/configs/llm_params.py -------------------------------------------------------------------------------- /src/codeas/configs/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/configs/prompts.py -------------------------------------------------------------------------------- /src/codeas/core/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/agent.py -------------------------------------------------------------------------------- /src/codeas/core/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/clients.py -------------------------------------------------------------------------------- /src/codeas/core/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/llm.py -------------------------------------------------------------------------------- /src/codeas/core/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/metadata.py -------------------------------------------------------------------------------- /src/codeas/core/repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/repo.py -------------------------------------------------------------------------------- /src/codeas/core/retriever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/retriever.py -------------------------------------------------------------------------------- /src/codeas/core/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/state.py -------------------------------------------------------------------------------- /src/codeas/core/usage_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/core/usage_tracker.py -------------------------------------------------------------------------------- /src/codeas/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/main.py -------------------------------------------------------------------------------- /src/codeas/ui/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/codeas/ui/components/deployment_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/deployment_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/components/documentation_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/documentation_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/components/metadata_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/metadata_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/components/page_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/page_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/components/refactoring_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/refactoring_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/components/repo_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/repo_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/components/testing_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/components/testing_ui.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/1_📚_Documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/1_📚_Documentation.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/2_🚀_Deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/2_🚀_Deployment.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/3_🧪_Testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/3_🧪_Testing.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/4_🔄_Refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/4_🔄_Refactoring.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/5_💬_Chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/5_💬_Chat.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/6_📝_Prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/6_📝_Prompts.py -------------------------------------------------------------------------------- /src/codeas/ui/pages/7_🔍_Usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/pages/7_🔍_Usage.py -------------------------------------------------------------------------------- /src/codeas/ui/ui_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/ui_state.py -------------------------------------------------------------------------------- /src/codeas/ui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/utils.py -------------------------------------------------------------------------------- /src/codeas/ui/🏠_Home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/ui/🏠_Home.py -------------------------------------------------------------------------------- /src/codeas/use_cases/deployment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/use_cases/deployment.py -------------------------------------------------------------------------------- /src/codeas/use_cases/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/use_cases/documentation.py -------------------------------------------------------------------------------- /src/codeas/use_cases/refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/use_cases/refactoring.py -------------------------------------------------------------------------------- /src/codeas/use_cases/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergerThinking/codeas/HEAD/src/codeas/use_cases/testing.py --------------------------------------------------------------------------------