instructor_assistant / pyproject.toml
joelazo
Initial commit of the AI instructor assistant agent.
854cd25
raw
history blame contribute delete
670 Bytes
[project]
name = "instructor-assistant"
version = "0.1.0"
description = "AI Agent helps instructors create lesson plans, course outline, exercise program... any resource needed for faster course preparation and execution."
requires-python = ">=3.11"
dependencies = [
"gradio>=5.49.1",
"python-dotenv>=1.2.1",
"openai[agents]>=1.54.0",
"pydantic>=2.11.10",
"openai-agents>=0.4.2",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["coordinator_agent", "course_manager", "curriculum_designer_agent", "instruction_designer_agent", "practice_designer_agent", "qa_agent"]