genkitx-patientseek
TypeScript icon, indicating that this package has built-in type declarations

0.1.6 • Public • Published

Firebase Genkit - PatientSeek Plugin

Firebase Genkit - PatientSeek Plugin

A Community Plugin for Google Firebase Genkit

genkitx-patientseek is a community plugin designed to integrate OpenAI APIs with Firebase Genkit.🔥

This plugin enables seamless interaction with OpenAI models through their official APIs, providing robust capabilities for medical-assistant tasks.


🚀 Features

  • Medical AI Integration: Uses the DeepSeek R1 Distill Llama 8B model trained on extensive patient records.
  • Summarization & Hypothesis Testing: Extracts and processes medical records with associative reasoning.
  • Seamless Genkit Compatibility: Easily integrate with Firebase Genkit.
  • Secure API Handling: Works with environment variables for API key management.

📦 Installation

Install the plugin in your project using your preferred package manager:

npm install genkitx-patientseek
yarn add genkitx-patientseek
pnpm add genkitx-patientseek

🔧 Usage

1️⃣ Initialize the Plugin

import { PatientSeek, PatientSeekChat } from "genkitx-patientseek";
import { genkit } from "genkit";
import * as dotenv from "dotenv";

dotenv.config();

const ai = genkit({
  plugins: [
    PatientSeek({
      apiKey: process.env.PATIENT_SEEK_API_KEY,
    }),
  ],
  model: PatientSeekChat,
});

2️⃣ Generate Medical Advice

(async () => {
  const { text } = await ai.generate({
    prompt: "What should I do if I have a headache?",
    system:
      "You are a helpful Medical Assistant. Your task is to help patients find the best doctors and clinics.",
  });
  console.log(text);
})();

📖 About the Model

Model Name: DeepSeek R1 Distill Llama 8B
Developed by: whyhow.ai
Purpose: Medical summarization, record extraction, and medical-legal reasoning
Repository: DeepSeek R1 Distill Llama 8B GGUF
Article: Introducing PatientSeek


🌟 Contributing

Want to contribute? We'd love your help! Check out our Contribution Guidelines to get started.

Happy coding! 🚀

Package Sidebar

Install

npm i genkitx-patientseek

Weekly Downloads

443

Version

0.1.6

License

none

Unpacked Size

53.7 kB

Total Files

23

Last publish

Collaborators

  • karandevhub