File size: 475 Bytes
ba18ff2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#!/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()
|