Spaces:
Runtime error
Runtime error
File size: 517 Bytes
8c257fb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import os
openai_api = os.environ.get("openai")
groq_api = os.environ.get("groq")
proxycurl_api = os.environ.get("proxycurl")
gemini_api = os.environ.get("gemini")
file_id_htl_biotech = os.environ.get("file_id_htl_biotech")
file_id_smart_sd = os.environ.get("file_id_smart_sd")
file_id_kamera_express = os.environ.get("file_id_kamera_express")
file_id_sunday_naturals = os.environ.get("file_id_sunday_naturals")
models = {
# "openai" : 'gpt-4-turbo',
"openai" : 'gpt-4o',
"groq" : "llama3-70b-8192"
} |