├── .github └── workflows │ ├── CI_doc.yml │ └── CI_test.yml ├── .gitignore ├── LICENSE ├── README.md ├── VERSION ├── app └── main.f90 ├── chat_history ├── chat_input ├── ford.yml ├── foropenai.json ├── fpm.toml ├── media ├── example.png ├── logo.png └── logo.svg ├── src ├── foropenai.f90 ├── foropenai_ChatCompletion.f90 ├── foropenai_ImageGeneration.f90 ├── foropenai_Transcription.f90 ├── foropenai_Translation.f90 └── foropenai_base.f90 ├── test ├── audio.mp3 ├── audio_de.mp3 ├── image.png ├── test1.f90 ├── test2.f90 ├── test3.f90 ├── test4.f90 └── test5.f90 └── workspace.code-workspace /.github/workflows/CI_doc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/.github/workflows/CI_doc.yml -------------------------------------------------------------------------------- /.github/workflows/CI_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/.github/workflows/CI_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.5.0 -------------------------------------------------------------------------------- /app/main.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/app/main.f90 -------------------------------------------------------------------------------- /chat_history: -------------------------------------------------------------------------------- 1 | User: hello! 2 | ChatGPT: Hi there! How can I assist you today? 3 | -------------------------------------------------------------------------------- /chat_input: -------------------------------------------------------------------------------- 1 | hello! -------------------------------------------------------------------------------- /ford.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/ford.yml -------------------------------------------------------------------------------- /foropenai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/foropenai.json -------------------------------------------------------------------------------- /fpm.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/fpm.toml -------------------------------------------------------------------------------- /media/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/media/example.png -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/media/logo.svg -------------------------------------------------------------------------------- /src/foropenai.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/src/foropenai.f90 -------------------------------------------------------------------------------- /src/foropenai_ChatCompletion.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/src/foropenai_ChatCompletion.f90 -------------------------------------------------------------------------------- /src/foropenai_ImageGeneration.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/src/foropenai_ImageGeneration.f90 -------------------------------------------------------------------------------- /src/foropenai_Transcription.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/src/foropenai_Transcription.f90 -------------------------------------------------------------------------------- /src/foropenai_Translation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/src/foropenai_Translation.f90 -------------------------------------------------------------------------------- /src/foropenai_base.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/src/foropenai_base.f90 -------------------------------------------------------------------------------- /test/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/audio.mp3 -------------------------------------------------------------------------------- /test/audio_de.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/audio_de.mp3 -------------------------------------------------------------------------------- /test/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/image.png -------------------------------------------------------------------------------- /test/test1.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/test1.f90 -------------------------------------------------------------------------------- /test/test2.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/test2.f90 -------------------------------------------------------------------------------- /test/test3.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/test3.f90 -------------------------------------------------------------------------------- /test/test4.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/test4.f90 -------------------------------------------------------------------------------- /test/test5.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/test/test5.f90 -------------------------------------------------------------------------------- /workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gha3mi/foropenai/HEAD/workspace.code-workspace --------------------------------------------------------------------------------