Fix LLM launch bugs (#378)

This commit is contained in:
cybermaggedon 2025-05-09 09:25:59 +01:00 committed by GitHub
parent 6dadf30c66
commit 9f4a718dd8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View file

@ -5,6 +5,7 @@ Input is prompt, output is response.
"""
from openai import OpenAI
import os
from .... exceptions import TooManyRequests
from .... base import LlmService, LlmResult

View file

@ -12,7 +12,6 @@ from .... base import LlmService, LlmResult
default_ident = "text-completion"
default_subscriber = module
default_model = 'gpt-3.5-turbo'
default_temperature = 0.0
default_max_output = 4096