Created
November 28, 2023 20:28
-
-
Save john-adeojo/7f25d1ae630610c3b9f720138e228455 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import autogen | |
# import autogen | |
autogen.oai.ChatCompletion.start_logging() | |
config_list = [ | |
{ | |
'model': 'meta-llama/Llama-2-70b-chat-hf', | |
'api_key': 'sk-111111111111111111111111111111111111111111111111', | |
'api_type': 'openai', | |
'api_base': 'https://<YOUR-ENDPOINT>-8000.proxy.runpod.net/v1', | |
'api_version': 'Tutorial' | |
} | |
] | |
llm_config = {"config_list": config_list, "seed":44} | |
# Perform Completion | |
question = 'Who are you?' | |
response = autogen.oai.Completion.create(config_list=config_list, prompt=question, temperature=0, max_tokens=1000) | |
ans = autogen.oai.Completion.extract_text(response)[0] | |
print("Model response:", ans) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment