├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── agent └── service.go ├── config └── info.go ├── copilot ├── endpoints.go └── messages.go ├── data ├── app_configuration.md ├── payload_verification.md ├── request_format.md └── response_format.md ├── embedding └── datasets.go ├── go.mod ├── go.sum ├── main.go └── oauth └── handler.go /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /agent/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/agent/service.go -------------------------------------------------------------------------------- /config/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/config/info.go -------------------------------------------------------------------------------- /copilot/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/copilot/endpoints.go -------------------------------------------------------------------------------- /copilot/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/copilot/messages.go -------------------------------------------------------------------------------- /data/app_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/data/app_configuration.md -------------------------------------------------------------------------------- /data/payload_verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/data/payload_verification.md -------------------------------------------------------------------------------- /data/request_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/data/request_format.md -------------------------------------------------------------------------------- /data/response_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/data/response_format.md -------------------------------------------------------------------------------- /embedding/datasets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/embedding/datasets.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/main.go -------------------------------------------------------------------------------- /oauth/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/rag-extension/HEAD/oauth/handler.go --------------------------------------------------------------------------------