Svngoku commited on
Commit
99ceb1b
·
verified ·
1 Parent(s): e0cc561

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -32,8 +32,8 @@ AUTHORIZED_IMPORTS = [
32
 
33
  # Model configuration
34
  MODEL_CONFIGS = {
35
- "optimus": {
36
- "model_id": "openrouter/openrouter/optimus-alpha",
37
  "temperature": 0.6
38
  },
39
  "dolphin": {
@@ -52,7 +52,7 @@ def initialize_koyeb_agent(model=None):
52
  if model is None:
53
  from smolagents import HfApiModel
54
  model = LiteLLMModel(
55
- model_id=MODEL_CONFIGS["optimus"]["model_id"],
56
  api_key=os.environ["OPENROUTER_API_KEY"],
57
  temperature=MODEL_CONFIGS["optimus"]["temperature"]
58
  )
 
32
 
33
  # Model configuration
34
  MODEL_CONFIGS = {
35
+ "nano": {
36
+ "model_id": "openrouter/openai/gpt-4.1-nano",
37
  "temperature": 0.6
38
  },
39
  "dolphin": {
 
52
  if model is None:
53
  from smolagents import HfApiModel
54
  model = LiteLLMModel(
55
+ model_id=MODEL_CONFIGS["nano"]["model_id"],
56
  api_key=os.environ["OPENROUTER_API_KEY"],
57
  temperature=MODEL_CONFIGS["optimus"]["temperature"]
58
  )