ilovekimchi6 / together-ai-dart

Dart SDK to interact with the Together AI API.
https://www.together.ai/
MIT License
14 stars 5 forks source link

Initialization has wrong syntax #1

Closed Karthiks915 closed 1 month ago

Karthiks915 commented 2 months ago

Trying this does not work.

final togetherAI = TogetherAISdK(
  apiKey: 'YOUR_API_KEY',
);

The right way is

final togetherAI = TogetherAISdK(
'YOUR_API_KEY',
);
ilovekimchi6 commented 1 month ago

Thank you so much friend, we fixed it!