help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
openai-gpt-chatbot
RSK World
openai-gpt-chatbot
OpenAI GPT Chatbot - GPT-3 + GPT-4 + ChatGPT + Streaming + Token Tracking + Flask + Python
openai-gpt-chatbot
  • __pycache__
  • static
  • templates
  • .env.example1.9 KB
  • .gitignore566 B
  • DOCUMENTATION.md17.6 KB
  • LICENSE1.2 KB
  • README.md8.9 KB
  • RELEASE_NOTES_v1.0.0.md5.5 KB
  • app.py10.9 KB
  • chatbot.py16.9 KB
  • config.py2.8 KB
  • env_example.txt1.9 KB
  • example_usage.py6.1 KB
  • personas.py5.1 KB
  • requirements.txt202 B
  • setup.py1.1 KB
LICENSEpersonas.py
LICENSE
Raw Download
Find: Go to:
MIT License

Copyright (c) 2026 RSK World

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Author: RSK World
Website: https://rskworld.in
Email: help@rskworld.in
Phone: +91 93305 39277
Year: 2026

29 lines•1.2 KB
text
personas.py
Raw Download
Find: Go to:
"""
Conversation Templates and Custom Personas

Author: RSK World
Website: https://rskworld.in
Email: help@rskworld.in
Phone: +91 93305 39277
Year: 2026

Pre-defined conversation templates and personas for the chatbot.
"""

# Author: RSK World (https://rskworld.in) - Year: 2026
PERSONAS = {
    "default": {
        "name": "Default Assistant",
        "system_prompt": "You are a helpful and friendly AI assistant created by RSK World (https://rskworld.in).",
        "description": "A general-purpose helpful assistant"
    },
    "coding": {
        "name": "Coding Assistant",
        "system_prompt": "You are an expert programming assistant created by RSK World. You help with code writing, debugging, and explaining programming concepts. Always provide clear, well-commented code examples.",
        "description": "Specialized in programming and code assistance"
    },
    "creative": {
        "name": "Creative Writer",
        "system_prompt": "You are a creative writing assistant created by RSK World. You help with storytelling, creative writing, poetry, and imaginative content. Be creative and engaging.",
        "description": "Helps with creative writing and storytelling"
    },
    "teacher": {
        "name": "Educational Tutor",
        "system_prompt": "You are a patient and knowledgeable teacher created by RSK World. You explain concepts clearly, provide examples, and adapt to different learning styles. Make learning enjoyable.",
        "description": "Educational and teaching assistant"
    },
    "business": {
        "name": "Business Advisor",
        "system_prompt": "You are a professional business consultant created by RSK World. You provide strategic advice, analyze business problems, and suggest practical solutions. Be professional and data-driven.",
        "description": "Business and professional consulting"
    },
    "friendly": {
        "name": "Friendly Chat",
        "system_prompt": "You are a friendly and conversational AI created by RSK World. You engage in casual conversation, show empathy, and make people feel comfortable. Be warm and approachable.",
        "description": "Casual and friendly conversations"
    },
    "technical": {
        "name": "Technical Expert",
        "system_prompt": "You are a technical expert created by RSK World. You provide detailed technical explanations, troubleshoot problems, and offer in-depth analysis. Be precise and thorough.",
        "description": "Deep technical expertise and analysis"
    },
    "translator": {
        "name": "Translation Assistant",
        "system_prompt": "You are a multilingual translation assistant created by RSK World. You translate text accurately while preserving meaning and context. Support multiple languages.",
        "description": "Translation and multilingual support"
    }
}

# Author: RSK World (https://rskworld.in) - Year: 2026
CONVERSATION_TEMPLATES = {
    "code_review": {
        "name": "Code Review",
        "messages": [
            {
                "role": "user",
                "content": "Please review this code and provide feedback on best practices, potential improvements, and any issues."
            }
        ]
    },
    "explain_concept": {
        "name": "Explain Concept",
        "messages": [
            {
                "role": "user",
                "content": "Can you explain this concept in simple terms with examples?"
            }
        ]
    },
    "brainstorm": {
        "name": "Brainstorming",
        "messages": [
            {
                "role": "user",
                "content": "Let's brainstorm ideas for:"
            }
        ]
    },
    "problem_solving": {
        "name": "Problem Solving",
        "messages": [
            {
                "role": "user",
                "content": "I'm facing this problem. Can you help me analyze it and suggest solutions?"
            }
        ]
    }
}


def get_persona(persona_key: str) -> dict:
    """
    Get persona configuration by key
    
    Args:
        persona_key: Key of the persona
        
    Returns:
        Persona dictionary or default persona
    """
    # Author: RSK World (https://rskworld.in) - Year: 2026
    return PERSONAS.get(persona_key, PERSONAS["default"])


def get_all_personas() -> dict:
    """
    Get all available personas
    
    Returns:
        Dictionary of all personas
    """
    # Author: RSK World (https://rskworld.in) - Year: 2026
    return PERSONAS


def get_template(template_key: str) -> dict:
    """
    Get conversation template by key
    
    Args:
        template_key: Key of the template
        
    Returns:
        Template dictionary or None
    """
    # Author: RSK World (https://rskworld.in) - Year: 2026
    return CONVERSATION_TEMPLATES.get(template_key)


def get_all_templates() -> dict:
    """
    Get all available templates
    
    Returns:
        Dictionary of all templates
    """
    # Author: RSK World (https://rskworld.in) - Year: 2026
    return CONVERSATION_TEMPLATES

147 lines•5.1 KB
python

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer