Juna190825 commited on
Commit
2312d81
·
verified ·
1 Parent(s): 41c50a3

Create app/config.py

Browse files
Files changed (1) hide show
  1. app/config.py +11 -0
app/config.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+
3
+ OPENROUTER_API_KEY = os.getenv("OPENROUTER_API_KEY")
4
+
5
+ # List of free models on OpenRouter
6
+ FREE_MODELS = [
7
+ "openrouter/ggml-alpaca-7b",
8
+ "openrouter/mistral-7b-instruct",
9
+ "openrouter/llama2-13b-chat",
10
+ "openrouter/openchat-3.5"
11
+ ]