admin管理员组文章数量:1334672
I have a class and method that I am trying to pass a self.instance_variable
as default but am unable to. Let me illustrate:
from openai import OpenAI
class Example_class:
def __init__(self) -> None:
self.client = OpenAI(api_key='xyz')
self.client2 = OpenAI(api_key='abc')
def chat_completion(self, prompt, context, client=self.client, model='gpt-4o'):
# Process the prompt
messages = [{"role": "system", "content": context}, {"role": "user", "content": prompt}]
response = client.chatpletions.create(
model=model,
messages=messages,
temperature=0.35, # this is the degree of randomness of the model's output
)
return response.choices[0].message.content
def do_something(self):
self.chat_completion(prompt="blah blah blah", context="fgasa")
You see, there is an error when trying to pass self.client
into the chat_completion
method. Where am I going wrong?
I have a class and method that I am trying to pass a self.instance_variable
as default but am unable to. Let me illustrate:
from openai import OpenAI
class Example_class:
def __init__(self) -> None:
self.client = OpenAI(api_key='xyz')
self.client2 = OpenAI(api_key='abc')
def chat_completion(self, prompt, context, client=self.client, model='gpt-4o'):
# Process the prompt
messages = [{"role": "system", "content": context}, {"role": "user", "content": prompt}]
response = client.chatpletions.create(
model=model,
messages=messages,
temperature=0.35, # this is the degree of randomness of the model's output
)
return response.choices[0].message.content
def do_something(self):
self.chat_completion(prompt="blah blah blah", context="fgasa")
You see, there is an error when trying to pass self.client
into the chat_completion
method. Where am I going wrong?
1 Answer
Reset to default 1You simply cannot do it like this. Understand the "self" as an argument just like the others (it really is). You cannot access it directly from the function header
One "correct" way to do this is to define a default Value as None and check for it's content :
class ExampleClass:
def chat_completion(self, prompt, context, client=None, model='gpt-4o'):
client = client or self.client # this will ensure client is never None.
# Process the prompt
本文标签: pythonUnable to pass selfinstancevariable as default into a class methodStack Overflow
版权声明:本文标题:python - Unable to pass self.instance_variable as default into a class method - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742365903a2461236.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
self.client
as function argument ? – Maurice Meyer Commented Nov 20, 2024 at 10:23