Building the Tutor Service Layer

In the previous lesson, we explored the SessionManager class, which plays a crucial role in managing tutoring session data within our application. Now, we will take the next step in our journey by building the Tutor Service Layer. This layer is essential for integrating the DeepSeek language model with tutoring sessions, allowing us to process student queries and generate tailored explanations. By the end of this lesson, you will understand how to set up the TutorService class, create tutoring sessions, and process academic questions using DeepSeek models via the OpenAI SDK.

The service layer acts as a bridge between the model layer, where data is managed, and the AI model, which generates educational responses. It is responsible for orchestrating the flow of data and ensuring that student interactions are handled effectively. Let's dive into the details of setting up this important component.

Setting Up the TutorService Class

The TutorService class is the heart of our service layer. It is responsible for managing tutoring sessions and interacting with the DeepSeek model to generate educational responses. To begin, we need to set up the class and its components.

First, we import the necessary modules, including the SessionManager from our previous lesson, the OpenAI SDK client (which we'll use to access DeepSeek models), the fs module for file operations, and the crypto module to generate unique session IDs. Here’s how the class is initialized in JavaScript:

// Import required modules
import fs from 'fs';
import path from 'path';
import crypto from 'crypto';
import { OpenAI } from 'openai';
import SessionManager from './models/session.js';

// Define the TutorService class
class TutorService {
    constructor() {
        this.sessionManager = new SessionManager();
        this.deepseekClient = new OpenAI();
        this.systemPrompt = this.loadSystemPrompt('data/system_prompt.txt');
    }

    // ... (other methods will be added here)
}

In this setup, we instantiate SessionManager to manage tutoring data, initialize the OpenAI client for DeepSeek model access, and load the systemPrompt using the same function in the class, which we have implemented in the Unit 1.

Creating a New Tutoring Session

Creating a new tutoring session is a fundamental task of the TutorService. The createSession method is responsible for generating a unique session ID and initializing a tutoring session using the SessionManager.

    /**
     * Create a new tutoring session.
     * @param {string} studentId
     * @returns {string} sessionId
     */
    createSession(studentId) {
        const sessionId = crypto.randomUUID();
        this.sessionManager.createSession(studentId, sessionId, this.systemPrompt);
        return sessionId;
    }

In this method, we generate a unique sessionId using the crypto.randomUUID() function. We then call the createSession method of SessionManager, passing the studentId, sessionId, and systemPrompt. This initializes a new tutoring session, which is ready to receive student queries.

Processing Student Queries

The processQuery method is where the educational magic happens. It processes student questions, interacts with the DeepSeek model to generate tutoring explanations, and updates the session history. Below, we outline the steps involved in this process, followed by the corresponding code implementation:

  1. Retrieve the session using getSession, and throw an error if the session is not found.
  2. Add the student's query to the session history.
  3. Send the conversation, including the system prompt and all previous exchanges, to the DeepSeek model to generate a response.
  4. Add the tutor's explanation to the session history and return it to the student.
  5. Handle any errors with the AI client gracefully.
    /**
     * Process a student query and provide a tutoring explanation.
     * @param {string} studentId
     * @param {string} sessionId
     * @param {string} query
     * @returns {Promise<string>}
     */
    async processQuery(studentId, sessionId, query) {
        // Step 1: Retrieve the session
        const session = this.sessionManager.getSession(studentId, sessionId);
        if (!session) {
            throw new Error("Session not found");
        }

        // Step 2: Add student's query to session
        this.sessionManager.addMessage(studentId, sessionId, "user", query);

        try {
            // Step 3: Get tutor response
            const conversation = this.sessionManager.getConversation(studentId, sessionId);

            const response = await this.deepseekClient.chat.completions.create({
                model: "deepseek-ai/DeepSeek-V3",
                messages: conversation,
                temperature: 0.6,
                max_tokens: 500
            });

            const tutorResponse = response.choices[0].message.content.trim();

            // Step 4: Add tutor's explanation to session history
            this.sessionManager.addMessage(studentId, sessionId, "assistant", tutorResponse);

            return tutorResponse;

        } catch (e) {
            // Step 5: Handle errors
            throw new Error(`Error getting tutor response: ${e.message}`);
        }
    }
}

In the context of a personal tutor, we configure our DeepSeek model with specific parameters to optimize its educational performance. The temperature is set to 0.6, which balances accuracy and creativity in the tutor's explanations, ensuring they are both informative and engaging. The max_tokens is set to 500, allowing the model to provide detailed educational content without overwhelming the student, thus maintaining an effective learning experience.

Example: Simulating a Tutoring Session

Let's see the TutorService in action by simulating a tutoring session. We'll create a script to initialize a tutoring session and process a student's academic query.

// Import the TutorService class
import TutorService from './services/tutor_service.js';

// Initialize the tutor service
const tutorService = new TutorService();

// Simulate a student ID
const studentId = "student123";

// Create a new tutoring session
const sessionId = tutorService.createSession(studentId);
console.log(`Tutoring session created with ID: ${sessionId}`);

// Simulate sending a tutoring query
const studentQuery = "Can you explain the principles of supply and demand in economics?";

(async () => {
    try {
        const tutorResponse = await tutorService.processQuery(studentId, sessionId, studentQuery);
        console.log(`Tutor Response: ${tutorResponse}`);
    } catch (e) {
        console.error(`Error: ${e.message}`);
    }
})();

In this example, we initialize the TutorService, simulate a student ID, and create a new tutoring session, printing the session ID. We then simulate sending an economics question and print the tutor's response, demonstrating the flow from student query to tutoring explanation and showcasing the functionality of the TutorService.

Tutoring session created with ID: 01a17870-8a4f-4b6f-a3ce-f04e1136d597
Tutor Response: Supply and demand are fundamental principles in economics that describe how prices are determined in a market economy. Let me explain each concept and how they interact:

1. Supply: This refers to the quantity of a good or service that producers are willing and able to offer for sale at various price points. 
   - The law of supply states that as the price of a good increases, the quantity supplied also increases (and vice versa).
   - This creates an upward-sloping supply curve when plotted on a graph with price on the vertical axis and quantity on the horizontal axis.

2. Demand: This refers to the quantity of a good or service that consumers are willing and able to purchase at various price points.
   - The law of demand states that as the price of a good increases, the quantity demanded decreases (and vice versa).
   - This creates a downward-sloping demand curve on the same type of graph.

3. Market Equilibrium: This occurs at the intersection of the supply and demand curves.
   - At this point, the quantity that producers want to supply exactly equals the quantity that consumers want to buy.
   - The price at this intersection is called the equilibrium price, and the quantity is called the equilibrium quantity.

4. Price Mechanism: When markets are not in equilibrium, the price acts as a signal:
   - If price is above equilibrium, there's a surplus (excess supply), which puts downward pressure on prices.
   - If price is below equilibrium, there's a shortage (excess demand), which puts upward pressure on prices.

5. Shifts in Supply and Demand: Various factors can cause entire curves to shift:
   - Supply shifters include technology, input costs, number of sellers, and expectations.
   - Demand shifters include income, preferences, number of buyers, and expectations.

These principles help explain how markets allocate resources efficiently and how changes in market conditions affect prices and quantities.

Does this explanation help? Would you like me to elaborate on any specific aspect of supply and demand?

This output illustrates a successful tutoring interaction where a new session is created, and the AI responds to the student's economics question with a comprehensive explanation. The tutor's response demonstrates the system's ability to provide relevant, structured, and educational content, showcasing how the DeepSeek model can be effectively used for personalized academic support.

Summary and Next Steps

In this lesson, we explored the TutorService class and its role in integrating the DeepSeek language model with tutoring sessions. We learned how to set up the class, load the system prompt, create sessions, and process student queries. The service layer is a vital component of our personal tutor application, ensuring that student interactions are handled effectively and that educational content is delivered in a clear and engaging manner.

As you move on to the practice exercises, take the opportunity to experiment with the TutorService functionality. This hands-on practice will reinforce the concepts covered in this lesson and prepare you for the next steps in our course. Keep up the great work, and I look forward to seeing your progress!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal