Fix tab_dataset

This commit is contained in:
zin
2026-05-06 23:36:42 +00:00
parent b99ca8022a
commit 39a68bc3c3
3 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -3,9 +3,9 @@ import json
import re
class LLMAcousticBridge:
def __init__(self, model_name="phi3", host="http://localhost:11434"):
def __init__(self, model_name="dolphin-llama3:8b"):
self.model_name = model_name
self.api_url = f"{host}/api/generate"
self.api_url = "http://localhost:11434/api/generate"
def _clean_json(self, text):
"""Вытаскивает чистый JSON из ответа нейросети."""