Commit 8b340e12 authored by Kantz's avatar Kantz
Browse files

add more comments

parent 2789b332
# structure of the tutor-prompt
from app.deterministic_services import llm_client
......
# structure of the qa-prompt
from app.deterministic_services import llm_client
QA_SYSTEM_PROMPT ="""
......
# structure of the socratic-prompt
from __future__ import annotations
from typing import Iterable
......
# structure of the solver-prompt as used in the tutor-mode.
from app.deterministic_services import llm_client
......
# structure of the task-prompt.
from __future__ import annotations
from app.deterministic_services import llm_client
......
# This module provides functions to read and validate configuration settings from environment variables.
import os
from dataclasses import dataclass
from pathlib import Path
......
# This is the main entry point for the Math Tutor API application. It sets up the FastAPI app, configures middleware, and includes API routers.
from contextlib import asynccontextmanager
import logging
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment