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.
- 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.
Install the plugin in your project using your preferred package manager:
npm install genkitx-patientseek
yarn add genkitx-patientseek
pnpm add genkitx-patientseek
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,
});
(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);
})();
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
Want to contribute? We'd love your help! Check out our Contribution Guidelines to get started.
Happy coding! 🚀