update to use claude instead of gemini for better results
Browse files
app.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import os
|
2 |
import sys
|
|
|
3 |
# Set HF_HOME to a writable directory in /tmp
|
4 |
os.environ["HF_HOME"] = "/tmp/huggingface_cache"
|
5 |
os.makedirs("/tmp/huggingface_cache", exist_ok=True)
|
|
|
1 |
import os
|
2 |
import sys
|
3 |
+
from openai import OpenAI
|
4 |
# Set HF_HOME to a writable directory in /tmp
|
5 |
os.environ["HF_HOME"] = "/tmp/huggingface_cache"
|
6 |
os.makedirs("/tmp/huggingface_cache", exist_ok=True)
|