Skip to content

Latest commit

 

History

History
43 lines (43 loc) · 1.39 KB

File metadata and controls

43 lines (43 loc) · 1.39 KB

dialogware/ ├── LICENSE ├── README.md ├── pyproject.toml ├── setup.cfg ├── src/ │ └── dialogware/ │ ├── init.py │ ├── core/ │ │ ├── init.py │ │ ├── parser.py │ │ ├── translator.py │ │ ├── pipeline.py │ │ └── executor.py │ ├── plugins/ │ │ ├── init.py │ │ ├── file_operations/ │ │ ├── sql_operations/ │ │ ├── browser_operations/ │ │ └── code_generation/ │ ├── debuggers/ │ │ ├── init.py │ │ ├── nlp_debugger.py │ │ ├── dsl_debugger.py │ │ ├── pipeline_debugger.py │ │ └── execution_debugger.py │ ├── designers/ │ │ └── pipeline_designer.py │ ├── llm/ │ │ ├── init.py │ │ ├── anthropic_client.py │ │ └── ollama_client.py │ └── utils/ │ ├── init.py │ ├── logging.py │ ├── visualization.py │ └── storage.py └── tests/ ├── init.py ├── test_core/ ├── test_plugins/ ├── test_debuggers/ └── test_llm/