├── .gitignore ├── Demos ├── ChatGPT │ ├── ChatGPT.dpr │ ├── ChatGPT.dproj │ ├── Gpt4All.dpr │ └── Gpt4All.dproj └── Lazarus │ ├── ChatGPT.lpi │ └── ChatGPT.lpr ├── LICENSE ├── OpenAISpec.json ├── OpenAiConfig.json ├── README.md └── Source ├── OpenAIClient.pas ├── OpenAIDtos.pas ├── OpenAIJson.pas ├── OpenApiFpc.pas ├── OpenApiHttp.pas ├── OpenApiIndy.pas ├── OpenApiJson.pas ├── OpenApiRest.pas ├── OpenApiSparkle.pas └── OpenApiUtils.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /Demos/ChatGPT/ChatGPT.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Demos/ChatGPT/ChatGPT.dpr -------------------------------------------------------------------------------- /Demos/ChatGPT/ChatGPT.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Demos/ChatGPT/ChatGPT.dproj -------------------------------------------------------------------------------- /Demos/ChatGPT/Gpt4All.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Demos/ChatGPT/Gpt4All.dpr -------------------------------------------------------------------------------- /Demos/ChatGPT/Gpt4All.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Demos/ChatGPT/Gpt4All.dproj -------------------------------------------------------------------------------- /Demos/Lazarus/ChatGPT.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Demos/Lazarus/ChatGPT.lpi -------------------------------------------------------------------------------- /Demos/Lazarus/ChatGPT.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Demos/Lazarus/ChatGPT.lpr -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenAISpec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/OpenAISpec.json -------------------------------------------------------------------------------- /OpenAiConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/OpenAiConfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/README.md -------------------------------------------------------------------------------- /Source/OpenAIClient.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenAIClient.pas -------------------------------------------------------------------------------- /Source/OpenAIDtos.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenAIDtos.pas -------------------------------------------------------------------------------- /Source/OpenAIJson.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenAIJson.pas -------------------------------------------------------------------------------- /Source/OpenApiFpc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiFpc.pas -------------------------------------------------------------------------------- /Source/OpenApiHttp.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiHttp.pas -------------------------------------------------------------------------------- /Source/OpenApiIndy.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiIndy.pas -------------------------------------------------------------------------------- /Source/OpenApiJson.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiJson.pas -------------------------------------------------------------------------------- /Source/OpenApiRest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiRest.pas -------------------------------------------------------------------------------- /Source/OpenApiSparkle.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiSparkle.pas -------------------------------------------------------------------------------- /Source/OpenApiUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landgraf-dev/openai-delphi/HEAD/Source/OpenApiUtils.pas --------------------------------------------------------------------------------