# apex-ex2-chatbot **Repository Path**: mirrors_urish/apex-ex2-chatbot ## Basic Information - **Project Name**: apex-ex2-chatbot - **Description**: Chatbot Training Exercise - APEX - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-09-13 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Custom GPT ## Setup Create a [huggingface token](https://huggingface.co/settings/tokens/new?tokenType=read) and add it to Modal secrets as `huggingface-token`: ``` modal secret create huggingface-token HF_TOKEN=your_huggingface_token ``` Then, to download the Mistral model and the dataset, run: ``` modal run main.py --function download_mistral modal run main.py --function download_dataset ``` ## Intefrence with the base model To run inference with the base model, run: ``` modal run main.py --function infer_base ```