├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── agent ├── service.go └── sse.go ├── config └── info.go ├── copilot ├── endpoints.go └── messages.go ├── go.mod ├── go.sum ├── main.go └── oauth └── handler.go /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /agent/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/agent/service.go -------------------------------------------------------------------------------- /agent/sse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/agent/sse.go -------------------------------------------------------------------------------- /config/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/config/info.go -------------------------------------------------------------------------------- /copilot/endpoints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/copilot/endpoints.go -------------------------------------------------------------------------------- /copilot/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/copilot/messages.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/main.go -------------------------------------------------------------------------------- /oauth/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/copilot-extensions/function-calling-extension/HEAD/oauth/handler.go --------------------------------------------------------------------------------