Git Product home page Git Product logo

Comments (2)

Tender-sun avatar Tender-sun commented on August 23, 2024 1

感谢答疑!

from llm-as-hh.

henry-yeh avatar henry-yeh commented on August 23, 2024

感谢兴趣!

可以修改这里的代码:

def init_client(cfg):
global client
if cfg.model.startswith("gpt"):
from openai import OpenAI
assert os.getenv('OPENAI_API_KEY') is not None, "Please set the environment variable OPENAI_API_KEY"
client = OpenAI(api_key=os.getenv('OPENAI_API_KEY'))
elif cfg.model.startswith("GLM"):
from zhipuai import ZhipuAI
assert os.getenv('ZHIPU_AI_API_KEY') is not None, "Please set the environment variable ZHIPU_AI_API_KEY"
zhipu_api_key = os.getenv('ZHIPU_AI_API_KEY')
client = ZhipuAI(api_key=zhipu_api_key)
else:
from openai import OpenAI
# We use llama api here. See the available models at https://docs.llama-api.com/quickstart#available-models
assert os.getenv('LLAMA_API_KEY') is not None, "Please set the environment variable LLAMA_API_KEY"
client = OpenAI(
api_key = os.getenv('LLAMA_API_KEY'),
base_url = "https://api.llama-api.com"
)

例如,如果使用gpt系列,并使用openai api,对第14行进行修改如下:
client = OpenAI(api_key=YOUR_OPENAI_API_KEY)

可以参考这里对base_url进行修改,使用非openai官方的key:

LLM-as-HH/utils/utils.py

Lines 21 to 28 in 4cea10a

else:
from openai import OpenAI
# We use llama api here. See the available models at https://docs.llama-api.com/quickstart#available-models
assert os.getenv('LLAMA_API_KEY') is not None, "Please set the environment variable LLAMA_API_KEY"
client = OpenAI(
api_key = os.getenv('LLAMA_API_KEY'),
base_url = "https://api.llama-api.com"
)

from llm-as-hh.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.