Radosław Wolnik commited on
Commit
a54eb10
·
1 Parent(s): 572a290
Files changed (4) hide show
  1. .gitignore +0 -3
  2. ChatAI/chat_ai.py +3 -2
  3. README.md +0 -12
  4. requirements.txt +5 -1
.gitignore CHANGED
@@ -1,6 +1,3 @@
1
  /.idea/
2
  /.Chatter/
3
  .aider*
4
- .env
5
- ChatAI/__pycache__/chat_ai.cpython-312.pyc
6
- ChatAI/__pycache__/__init__.cpython-312.pyc
 
1
  /.idea/
2
  /.Chatter/
3
  .aider*
 
 
 
ChatAI/chat_ai.py CHANGED
@@ -1,3 +1,4 @@
1
- from huggingface_hub import InferenceClient
2
 
3
- pipe = InferenceClient("mistralai/Mistral-7B-Instruct-v0.3")
 
 
1
+ from transformers import pipeline
2
 
3
+
4
+ pipe = pipeline("text2text-generation", model="google/flan-t5-xxl")
README.md DELETED
@@ -1,12 +0,0 @@
1
- ---
2
- title: Gradio Chatbot
3
- emoji: 💬
4
- colorFrom: yellow
5
- colorTo: purple
6
- sdk: gradio
7
- sdk_version: 5.0.1
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- An example chatbot using [Gradio](https://gradio.app), [`huggingface_hub`](https://huggingface.co/docs/huggingface_hub/v0.22.2/en/index), and the [Hugging Face Inference API](https://huggingface.co/docs/api-inference/index).
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements.txt CHANGED
@@ -1 +1,5 @@
1
- huggingface_hub==0.25.2
 
 
 
 
 
1
+ transformers
2
+ huggingface_hub==0.25.2
3
+ discord.py
4
+ discord
5
+ TensorFlow>=2.0