getModel method

Future<GroqLLMModel> getModel(
  1. String modelId
)

Returns the model metadata from groq with the given model id \

Implementation

Future<GroqLLMModel> getModel(String modelId) async {
  return await GroqApi.getModel(modelId, apiKey);
}