Reubencf commited on
Commit
f393d86
Β·
verified Β·
1 Parent(s): 18f1a09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -13,16 +13,16 @@ import spaces # 1. Import the spaces library
13
  MODEL_ID = "Reubencf/gemma3-konkani"
14
  HF_TOKEN = os.getenv("HF_TOKEN")
15
 
16
- TITLE = "🌴 Gemma Goan Q&A Bot (ZeroGPU)"
17
  DESCRIPTION = (
18
- "Konkni uloi re babab.\n"
19
- "ulo re uloi re"
20
  )
21
  # We define the pipeline object globally but initialize it inside the function
22
  pipe = None
23
 
24
  # ── Generation Function ──────────────────────────────────────────────────────
25
- @spaces.GPU(duration=60) # 2. Decorate the function that needs the GPU
26
  def generate_response(message, history):
27
  """
28
  This function is called for each user message.
 
13
  MODEL_ID = "Reubencf/gemma3-konkani"
14
  HF_TOKEN = os.getenv("HF_TOKEN")
15
 
16
+ TITLE = "Konkani LLM Fine Tuned on Gemma 3"
17
  DESCRIPTION = (
18
+ "Version 1 of the Konkani LLM\n"
19
+ "Will be improved as years pass by"
20
  )
21
  # We define the pipeline object globally but initialize it inside the function
22
  pipe = None
23
 
24
  # ── Generation Function ──────────────────────────────────────────────────────
25
+ @spaces.GPU(duration=120) # 2. Decorate the function that needs the GPU
26
  def generate_response(message, history):
27
  """
28
  This function is called for each user message.