chatanywhere / GPT_API_free

Free ChatGPT API Key,免费ChatGPT API,支持GPT4 API(免费),ChatGPT国内可用免费转发API,直连无需代理。可以搭配ChatBox等软件/插件使用,极大降低接口使用成本。国内即可无限制畅快聊天。
MIT License
24.56k stars 1.86k forks source link

免费api key中的 gpt-4o-mini 模型 temperature 参数失效 #295

Open jasonwujch opened 1 month ago

jasonwujch commented 1 month ago

Describe the bug 描述bug 免费api key中的 gpt-4o-mini 模型 temperature 参数失效

To Reproduce 复现方法 Steps to reproduce the behavior:

from openai import OpenAI

client = OpenAI(

fill in your own API key here

api_key= ...,
base_url="https://api.chatanywhere.org/v1"

)

def get_completion(prompt, model="gpt-4o-mini", temperature=0): messages = [{"role": "user", "content": prompt}] response = client.chat.completions.create( model=model, messages=messages, temperature=temperature, # this is the degree of randomness of the model's output ) return response.choices[0].message.content

get_completion("tell me a joke", temperature = 1, model="gpt-4o-mini")

Screenshots 截图 每次都返回同样的结果,gpt-3.5-turbo 会返回不同结果

ynpl commented 1 month ago

你还要设置及其他的参数 光设置temperature 没有用的 建议查看Openai 官方文档