From d308f0f5d82eabcde8b444c0adc3219b749b4cda Mon Sep 17 00:00:00 2001 From: csunny Date: Fri, 28 Apr 2023 18:05:24 +0800 Subject: [PATCH] add requirements --- app.py => pilot/app.py | 0 pilot/server/chatbot.py | 3 +++ pilot/server/sqlgpt.py | 4 ++++ requirements.txt | 4 ++++ 4 files changed, 11 insertions(+) rename app.py => pilot/app.py (100%) create mode 100644 pilot/server/chatbot.py create mode 100644 pilot/server/sqlgpt.py create mode 100644 requirements.txt diff --git a/app.py b/pilot/app.py similarity index 100% rename from app.py rename to pilot/app.py diff --git a/pilot/server/chatbot.py b/pilot/server/chatbot.py new file mode 100644 index 000000000..97206f2d5 --- /dev/null +++ b/pilot/server/chatbot.py @@ -0,0 +1,3 @@ +#!/usr/bin/env python3 +# -*- coding:utf-8 -*- + diff --git a/pilot/server/sqlgpt.py b/pilot/server/sqlgpt.py new file mode 100644 index 000000000..f5a71c392 --- /dev/null +++ b/pilot/server/sqlgpt.py @@ -0,0 +1,4 @@ +#!/usr/bin/env python3 +#-*- coding: utf-8 -*- + + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 000000000..44e89c0b9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +accelerate==0.16.0 +torch==2.0.0 +torchvision==0.13.1 +torchaudio==0.12.1