okesa
Version:
Okesa: LLM-powered Natural Language Processing 💬
14 lines (13 loc) • 721 B
TypeScript
/**
* This module contains the prompts for various NLP tasks that Okesa can perform.
* @author Aditya Patange (AdiPat)
* @file prompts.ts
* @description Okesa NLP Engine is a simple and easy-to-use Natural Language Processing (NLP) library powered by OpenAI. This library provides a set of functions to perform various NLP tasks such as POS tagging, NER, Sentiment Analysis, Language Detection, Text Classification, Text Summarization, Keyword Extraction, Spell Checking, Stemming and Lemmatization, and Dependency Parsing.
* @license MIT
* @copyright © 2025 Aditya Patange
* @module okesa
* ⚡️ "Respect comes when you give it back." - Oen
*/
export declare const PROMPTS: {
[key: string]: Function;
};