rm debug log

This commit is contained in:
martin legrand
2025-03-27 11:59:10 +01:00
parent f0802c3035
commit cf4d9b63c7
2 changed files with 4 additions and 3 deletions
+3 -1
View File
@@ -262,10 +262,12 @@ Set the desired provider in the `config.ini`
[MAIN] [MAIN]
is_local = False is_local = False
provider_name = openai provider_name = openai
provider_model = gpt4o provider_model = gpt-4o
provider_server_address = 127.0.0.1:5000 provider_server_address = 127.0.0.1:5000
``` ```
WARNING: Make sure there is not trailing space in the config.
Set `is_local` to True if using a local openai-based api. Set `is_local` to True if using a local openai-based api.
Change the IP address if your openai-based api run on your own server. Change the IP address if your openai-based api run on your own server.
+1 -2
View File
@@ -171,11 +171,10 @@ class Provider:
Use openai to generate text. Use openai to generate text.
""" """
if self.is_local: if self.is_local:
print("Using local OpenAI server")
client = OpenAI(api_key=self.api_key, base_url=base_url) client = OpenAI(api_key=self.api_key, base_url=base_url)
else: else:
print("Using OpenAI API")
client = OpenAI(api_key=self.api_key) client = OpenAI(api_key=self.api_key)
try: try:
response = client.chat.completions.create( response = client.chat.completions.create(
model=self.model, model=self.model,