I’ve already integrated the OpenAI API into VS Code through the Continue extension. Now I’d like to use the OpenAI API in my Flutter projects as efficiently and cost-effectively as possible. Given my background in native Android development (Kotlin/Java) but no experience with Flutter, which OpenAI model would you recommend using, and what are the best practices for using the OpenAI API in Flutter projects?
Welcome to this forum.
Flutter (like any mobile app) is mostly a client/frontend framework.
About best practices: unless you are developing a BYOK app, make sure to never save your own api keys in the project. Set a server sided backend with user authentication if you intend to provide any services using your own api key.
Other than that, it is just a language like any other, so basically any http package should suffice to make the calls for any model. There are no specifics on flutter that would directly affect costs.