now fixed something that I myself broke

This commit is contained in:
xssdoctor 2024-03-13 21:18:46 -04:00
parent 3c187bb319
commit 5cfeeedccc

View File

@ -55,8 +55,8 @@ class Standalone:
self.model = 'gpt-4-turbo-preview' self.model = 'gpt-4-turbo-preview'
self.claude = False self.claude = False
sorted_gpt_models, ollamaList, claudeList = self.fetch_available_models() sorted_gpt_models, ollamaList, claudeList = self.fetch_available_models()
self.local = self.model.strip() in ollamaList self.local = self.model in ollamaList
self.claude = self.model.strip() in claudeList self.claude = self.model in claudeList
async def localChat(self, messages, host=''): async def localChat(self, messages, host=''):
from ollama import AsyncClient from ollama import AsyncClient