Ali

Results 34 comments of Ali

How about these colormaps? https://github.com/holoviz/colorcet/blob/main/assets/colorcet.m https://github.com/planetarymike/IDL-Colorbars https://github.com/hhuangwx/cmaps https://github.com/1313e/CMasher

Before submitting my pull request, I made the following changes: You can view the changes at this link: https://github.com/vmagnin/forcolormap/compare/main...gha3mi:forcolormap:main. 1. **Addition of Matplotlib Colormaps:** I have added four new Matplotlib...

Thanks, @vmagnin! This happened because of code formatting.

Thank you for sharing your ideas. I completely agree with your vision for ForImage. Drawing methods for shapes, anti-aliasing, filters, layer management, and transformations like rotations and mirrors are all...

I've been thinking about making libraries with fpm, which I used for [ForLAPACK](https://github.com/gha3mi/forlapack) and [ForBLAS](https://github.com/gha3mi/forblas). These may not be optimized versions, but for testing Fortran codes on GitHub, it could...

To find locations on a Mac, I used the `find` command: ```shell find /usr/local -name "libgfortran" find /usr/local -name "libquadmath" find /usr/local -name "gfortran" ``` Maybe the above solution can...

Thanks, @rajkumardongre. I've tested your program, and it functions correctly. However, in this case, it requires a space: ```fortran form_data = [& pair_type('model', trim(this%model)),& pair_type(' language', trim(this%language)),& pair_type(' response_format', trim(this%response_format)),&...

@rajkumardongre This is the equivalent `curl` command that functions correctly: ```shell curl https://api.openai.com/v1/audio/transcriptions \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -H "Content-Type: multipart/form-data" \ -F file="@test/audio.mp3" \ -F model="whisper-1" \ -F...

@rajkumardongre, here's another issue with `multipart/form-data` when using the `http-client`, whereas the `curl` command functions correctly. Issue #33.

This is the error message when using "temperature": ```json { "error": { "message": "1 validation error for Request\nbody -> temperature\n value is not a valid float (type=type_error.float)", "type": "invalid_request_error", "param":...