ginipick commited on
Commit
12ab16a
ยท
verified ยท
1 Parent(s): c592c9d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ import asyncio
9
  logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s:%(name)s: %(message)s', handlers=[logging.StreamHandler()])
10
 
11
  # ์ถ”๋ก  API ํด๋ผ์ด์–ธํŠธ ์„ค์ •
12
- hf_client = InferenceClient(model="CohereForAI/c4ai-command-r-plus", token=os.getenv("HF_TOKEN"))
13
 
14
  # ๋Œ€ํ™” ํžˆ์Šคํ† ๋ฆฌ๋ฅผ ์ €์žฅํ•  ์ „์—ญ ๋ณ€์ˆ˜
15
  conversation_history = []
 
9
  logging.basicConfig(level=logging.DEBUG, format='%(asctime)s:%(levelname)s:%(name)s: %(message)s', handlers=[logging.StreamHandler()])
10
 
11
  # ์ถ”๋ก  API ํด๋ผ์ด์–ธํŠธ ์„ค์ •
12
+ hf_client = InferenceClient(model=os.getenv("LLM"), token=os.getenv("HF_TOKEN"))
13
 
14
  # ๋Œ€ํ™” ํžˆ์Šคํ† ๋ฆฌ๋ฅผ ์ €์žฅํ•  ์ „์—ญ ๋ณ€์ˆ˜
15
  conversation_history = []