├── .gitignore ├── LICENSE ├── README.md ├── bot └── README.md ├── docs ├── TECH-SPEC.md ├── architecture.md ├── examples.md └── usage.md ├── mini-configs └── orders │ ├── Catalogs │ └── Товары │ │ └── Ext │ │ └── ObjectModule.bsl │ ├── Configuration.xml │ └── Documents │ └── ЗаказПокупателя │ └── Ext │ └── ObjectModule.bsl ├── parser └── README.md ├── rag-system └── README.md ├── scripts └── README.md └── wiki-generator └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/README.md -------------------------------------------------------------------------------- /bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/bot/README.md -------------------------------------------------------------------------------- /docs/TECH-SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/docs/TECH-SPEC.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/docs/usage.md -------------------------------------------------------------------------------- /mini-configs/orders/Catalogs/Товары/Ext/ObjectModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/mini-configs/orders/Catalogs/Товары/Ext/ObjectModule.bsl -------------------------------------------------------------------------------- /mini-configs/orders/Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/mini-configs/orders/Configuration.xml -------------------------------------------------------------------------------- /mini-configs/orders/Documents/ЗаказПокупателя/Ext/ObjectModule.bsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/mini-configs/orders/Documents/ЗаказПокупателя/Ext/ObjectModule.bsl -------------------------------------------------------------------------------- /parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/parser/README.md -------------------------------------------------------------------------------- /rag-system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/rag-system/README.md -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/scripts/README.md -------------------------------------------------------------------------------- /wiki-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1C-Migration-Lab/1c-analyzer-wiki-rag/HEAD/wiki-generator/README.md --------------------------------------------------------------------------------