#!/usr/bin/env python3 | |
""" | |
Quick Chat Launcher for DeepSeek | |
Simple script to launch the terminal chat interface quickly. | |
""" | |
import os | |
import sys | |
from pathlib import Path | |
def main(): | |
"""Launch the chat interface""" | |
print("Starting DeepSeek Terminal Chat...") | |
# Change to the correct directory | |
script_dir = Path(__file__).parent | |
os.chdir(script_dir) | |
# Launch the chat | |
os.system("python chat.py") | |
if __name__ == "__main__": | |
main() | |