deepseek 1.1.1 copy "deepseek: ^1.1.1" to clipboard
deepseek: ^1.1.1 copied to clipboard

A DeepSeek client for dart and flutter. Seamless integration of AI models for text generation and chat.

example/deepseek_example.dart

import 'package:deepseek/deepseek.dart';

void main() async {
  // Initialize DeepSeek client with your API key
  final deepSeek = DeepSeek("your-api-key");

  try {
    // 🔹 Create a chat completion -> https://api-docs.deepseek.com/api/create-chat-completion
    Completion response = await deepSeek.createChat(
      messages: [Message(role: "user", content: "Hello, how are you?")],
      model: Models.chat,
      options: {
        "temperature": 1.0,
        "max_tokens": 4096,
      },
    );
    print("Chat Response: ${response.text}");

    // 🔹 List available models
    List<Models> models = await deepSeek.listModels();
    print("Available Models: $models");

    // 🔹 Get user balance
    Balance balance = await deepSeek.getUserBalance();
    print("User Balance: ${balance.info}");
  } catch (e) {
    print("Error: $e");
  }
}
8
likes
160
points
240
downloads

Publisher

verified publisherzealousfoundry.com

Weekly Downloads

A DeepSeek client for dart and flutter. Seamless integration of AI models for text generation and chat.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

http

More

Packages that depend on deepseek