themissingCRAM
commited on
Commit
·
79dc784
1
Parent(s):
49ab16f
transformerModel
Browse files
app.py
CHANGED
@@ -121,9 +121,9 @@ if __name__ == "__main__":
|
|
121 |
engine = create_engine("sqlite:///:localhost:")
|
122 |
engine = init_db(engine)
|
123 |
model = TransformersModel(
|
124 |
-
model_id="Qwen/Qwen2.5-Coder-32B-Instruct",
|
125 |
-
device_map="cuda"
|
126 |
-
|
127 |
)
|
128 |
|
129 |
agent = CodeAgent(
|
|
|
121 |
engine = create_engine("sqlite:///:localhost:")
|
122 |
engine = init_db(engine)
|
123 |
model = TransformersModel(
|
124 |
+
# model_id="Qwen/Qwen2.5-Coder-32B-Instruct",
|
125 |
+
device_map="cuda",
|
126 |
+
model_id="meta-llama/Llama-3.2-3B-Instruct"
|
127 |
)
|
128 |
|
129 |
agent = CodeAgent(
|