<aside> 💡 To help students learn proofs and thinking have proof-based understanding.

</aside>

Workflow is Step by step, choose different paths (contradiction, case, etc), then build out the proof.

At each step, will have all the facts determined at that step, and chat helps you think of next steps given the information at hand.

How LlamaIndex Can Fit into Your Project

  1. Integrating Domain-Specific Data:

  2. Creating a Query Engine:

    typescriptCopy code
    const queryEngine = index.asQueryEngine();
    const response = await queryEngine.query("What is Pythagorean theorem?");
    
    
  3. Building a Chat Engine for Interactive Learning:

    typescriptCopy code
    const chatEngine = LlamaIndex.createChatEngine(dataIndex);
    const response = await chatEngine.interact("Tell me more about calculus!");
    
    
  4. Utilizing Data Agents for Advanced Tasks:

  5. Integration with Other Tools and Platforms:

Route that pulls suggestions!

Needs to be interactive! Let user respond and guess a way of thinking around the proof!